最近の更新

2009-09-27
2009-07-06
2009-04-11
2009-04-09
2009-03-06

최신 파일 자료

sticker (0.1.5.2)2009-10-25 12:47

サイドバー

<cursors>タグ

<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>