codecamp

PostgreSQL SPI_scroll_cursor_move

SPI_scroll_cursor_move — 移动一个游标

大纲

void SPI_scroll_cursor_move(Portal portal, FetchDirection direction,
                            long count)

描述

SPI_scroll_cursor_move在一个游标中跳过 一定数量的行。这等效于 SQL 命令MOVE

参数

Portal portal

包含该游标的 portal

FetchDirection direction

FETCH_FORWARDFETCH_BACKWARDFETCH_ABSOLUTE或者 FETCH_RELATIVE之一

long count

FETCH_FORWARD或者 FETCH_BACKWARD方式中要移动的行数; FETCH_ABSOLUTE方式中要移动到的绝对行号; FETCH_RELATIVE方式中要移动到的相对行号

返回值

成功时,就像在SPI_execute中会设置 SPI_processedSPI_tuptable被设置为NULL, 因为这个函数不需要返回行。

注解

参数directioncount的详细解释请见 SQL FETCH命令。

如果该游标的计划不是用CURSOR_OPT_SCROLL 选项创建的,除FETCH_FORWARD之外的方向值会 失败。


PostgreSQL SPI_scroll_cursor_fetch
PostgreSQL SPI_cursor_close
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }