Postgresql 中文操作指南

SPI_cursor_move

SPI_cursor_move — 移动游标

Synopsis

void SPI_cursor_move(Portal portal, bool forward, long count)

Description

SPI_cursor_move 跳过游标中的一些行数。这相当于 SQL 命令 MOVE 的一个子集(请参阅 SPI_scroll_cursor_move 了解更多功能)。

Arguments

  • Portal _portal_

    • portal containing the cursor

  • bool _forward_

    • true 表示向前移动,false 表示向后移动

  • long _count_

    • 要移动的最大行数

Notes

如果未使用 CURSOR_OPT_SCROLL 选项创建光标计划,向后移动可能会失败。