git-svn-id: http://xe-core.googlecode.com/svn/trunk@823 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-30 07:21:33 +00:00
parent 712cb9906c
commit cf01a082c7
30 changed files with 266 additions and 275 deletions

View file

@ -1,8 +1,8 @@
<query id="deleteModuleTags" action="delete">
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" />
</conditions>
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" />
</conditions>
</query>

View file

@ -1,8 +1,8 @@
<query id="deleteTag" action="delete">
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="document_srl" var="document_srl" filter="number" notnull="notnull" />
</conditions>
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="document_srl" var="document_srl" filter="number" notnull="notnull" />
</conditions>
</query>

View file

@ -1,12 +1,12 @@
<query id="insertTag" action="insert">
<tables>
<table name="tags" />
</tables>
<columns>
<column name="tag_srl" var="tag_srl" notnull="notnull" default="sequence()" />
<column name="module_srl" var="module_srl" filter="number" notnull="notnull" />
<column name="document_srl" var="document_srl" filter="number" notnull="notnull" />
<column name="tag" var="tag" notnull="notnull" minlength="1" maxlength="240" />
<column name="regdate" var="regdate" default="curdate()" />
</columns>
<tables>
<table name="tags" />
</tables>
<columns>
<column name="tag_srl" var="tag_srl" notnull="notnull" default="sequence()" />
<column name="module_srl" var="module_srl" filter="number" notnull="notnull" />
<column name="document_srl" var="document_srl" filter="number" notnull="notnull" />
<column name="tag" var="tag" notnull="notnull" minlength="1" maxlength="240" />
<column name="regdate" var="regdate" default="curdate()" />
</columns>
</query>