阅读(14)
赞(9)
PostgreSQL SPI_cursor_move
2021-08-23 09:49:31 更新
SPI_cursor_move — 移动一个游标
大纲
void SPI_cursor_move(Portal portal
, bool forward
, long count
)
描述
SPI_cursor_move
跳过一个游标中的一些行。 这等效于 SQL 命令MOVE
的一个子集(更多的功能 请见SPI_scroll_cursor_move
)。
参数
Portal
portal
-
包含该游标的 portal
bool
forward
-
为真表示前移,为假表示后移
long
count
-
要移动的最大行数
注解
如果该游标的计划不是用CURSOR_OPT_SCROLL
选项创建的,向后移动会失败。