sticker (0.1.5.2) | 2009-10-25 12:47 |
<cursors>タグは、<cursor>タグをまとめるための親タグです。
<cursor> <for>タグによるループ処理時に利用するカーソルを定義します
<cursors> <cursor>によるカーソル定義1 <cursor>によるカーソル定義2 <cursor>によるカーソル定義3 … <cursor>によるカーソル定義n </cursors>
サーバー1のテーブルに対して2つのカーソルを定義します。
<servers> <server name="db-server1" user="scott" pass="tiger"/> <server name="db-server2" user="test" pass="user"/> </servers> <cursors> <cursor name="employee_cursor"> select * from Employee </cursor> <cursor name="dept_employee_cursor"> select dept_name, name from dept left outer join employee on dept.id=employee.deptId </cursor> </cursors>