mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@739 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
32a9c0d347
commit
ab975f48b1
15 changed files with 242 additions and 38 deletions
9
modules/editor/queries/deleteSavedDoc.xml
Normal file
9
modules/editor/queries/deleteSavedDoc.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<query id="deleteSavedDoc" action="delete">
|
||||
<tables>
|
||||
<table name="editor_autosave" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="member_srl" var="member_srl" />
|
||||
<condition operation="equal" column="ipaddress" var="ipaddress" />
|
||||
</conditions>
|
||||
</query>
|
||||
10
modules/editor/queries/getSavedDocument.xml
Normal file
10
modules/editor/queries/getSavedDocument.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<query id="getSavedDocument" action="select">
|
||||
<tables>
|
||||
<table name="editor_autosave" />
|
||||
</tables>
|
||||
<columns />
|
||||
<conditions>
|
||||
<condition operation="equal" column="member_srl" var="member_srl" pipe="and" />
|
||||
<condition operation="equal" column="ipaddress" var="ipaddress" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
13
modules/editor/queries/insertSavedDoc.xml
Normal file
13
modules/editor/queries/insertSavedDoc.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<query id="insertSavedDoc" action="insert">
|
||||
<tables>
|
||||
<table name="editor_autosave" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="member_srl" var="member_srl" />
|
||||
<column name="ipaddress" var="ipaddress" />
|
||||
<column name="document_srl" var="document_srl" />
|
||||
<column name="title" var="title" />
|
||||
<column name="content" var="content" />
|
||||
<column name="regdate" var="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue