SPI_cursor_fetch <refpurpose>fetch some rows from a cursor</refpurpose> — カーソルから数行を取り出す
void SPI_cursor_fetch(Portalportal
, boolforward
, longcount
)
<function>SPI_cursor_fetch</function> fetches some rows from a
cursor. This is equivalent to a subset of the SQL command
<command>FETCH</command> (see <function>SPI_scroll_cursor_fetch</function>
for more functionality).
SPI_cursor_fetch
はカーソルから数行を取り出します。
これは、FETCH
SQLコマンドと部分的に等価です。
(詳細機能についてはSPI_scroll_cursor_fetch
を参照してください。)
Portal portal
portal containing the cursor カーソルを持つポータル
bool forward
true for fetch forward, false for fetch backward 前方方向の取り出しの場合、真。後方方向の場合は偽。
long count
maximum number of rows to fetch 取り出す最大行数。
<varname>SPI_processed</varname> and
<varname>SPI_tuptable</varname> are set as in
<function>SPI_execute</function> if successful.
成功時、SPI_processed
とSPI_tuptable
がSPI_execute
同様に設定されます。
Fetching backward may fail if the cursor's plan was not created
with the <symbol>CURSOR_OPT_SCROLL</symbol> option.
カーソルの計画が CURSOR_OPT_SCROLL
オプションを付けて作成されなかった場合、後方方向の取り出しは失敗する可能性があります。