mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-11 14:53:15 +09:00
widget에서 xml query를 이용할 수 있는 방법을 적용해서 직접 쿼리문을 실행해서 데이터 호출하는 코드 추가 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2376 201d5d3c-b55e-5fd7-737f-ddc643e51545
16 lines
555 B
XML
16 lines
555 B
XML
<query id="getDocumentList" action="select">
|
|
<tables>
|
|
<table name="documents" />
|
|
</tables>
|
|
<columns>
|
|
<column name="*" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="in" column="module_srl" var="module_srl" filter="number" />
|
|
<condition operation="equal" column="category_srl" var="category_srl" pipe="and" />
|
|
</conditions>
|
|
<navigation>
|
|
<index var="sort_index" default="document_srl" order="order_type" />
|
|
<list_count var="list_count" default="20" />
|
|
</navigation>
|
|
</query>
|