mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1203 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2236e6da4b
commit
9e5247d100
5 changed files with 18 additions and 19 deletions
|
|
@ -1,11 +1,12 @@
|
|||
<query id="getDeniedIPList" action="select">
|
||||
<query id="getCounterLog" action="select">
|
||||
<tables>
|
||||
<table name="spamfilter_denied_ip" />
|
||||
<table name="counter_log" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
<column name="count(*)" alias="count"/>
|
||||
</columns>
|
||||
<navigation>
|
||||
<index var="sort_index" default="regdate" order="desc" />
|
||||
</navigation>
|
||||
<conditions>
|
||||
<condition operation="equal" column="regdate" var="regdate" default="curdate()" notnull="notnull" />
|
||||
<condition operation="equal" column="ipaddress" var="ipaddress" default="ipaddress()" notnull="notnull" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<query id="getDeniedIPList" action="select">
|
||||
<query id="getCounterStatus.xml" action="select">
|
||||
<tables>
|
||||
<table name="spamfilter_denied_ip" />
|
||||
<table name="counter_status" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<navigation>
|
||||
<index var="sort_index" default="regdate" order="desc" />
|
||||
</navigation>
|
||||
<conditions>
|
||||
<condition operation="equal" column="regdate" var="regdate" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<query id="insertDeniedIP" action="insert">
|
||||
<query id="insertCounterLog" action="insert">
|
||||
<tables>
|
||||
<table name="spamfilter_denied_ip" />
|
||||
<table name="counter_log" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="ipaddress" var="ipaddress" notnull="notnull" />
|
||||
<column name="regdate" var="regdate" default="curdate()" />
|
||||
<column name="ipaddress" var="ipaddress" notnull="notnull" default="ipaddress()" />
|
||||
</columns>
|
||||
</query>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
<query id="insertLog" action="insert">
|
||||
<query id="insertCounterStatus" action="insert">
|
||||
<tables>
|
||||
<table name="spamfilter_log" />
|
||||
<table name="counter_status" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="spamfilter_log_srl" default="sequence()"/>
|
||||
<column name="ipaddress" default="ipaddress()" />
|
||||
<column name="regdate" var="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<query id="updateDocument" action="update">
|
||||
<query id="updateCounterStatus" action="update">
|
||||
<tables>
|
||||
<table name="documents" />
|
||||
</tables>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue