codecamp

PostgreSQL SPI_cursor_fetch

SPI_cursor_fetch — 从一个游标取出一些行

大纲

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

描述

SPI_cursor_fetch从一个游标取得一些行。 这等效于 SQL 命令FETCH的一个子集(更多功能 见SPI_scroll_cursor_fetch)。

参数

Portal portal

包含该游标的 portal

bool forward

为真表示向前获取,为假表示向后获取

long count

要取得的最大行数

返回值

成功时,就像在SPI_execute中会设置 SPI_processedSPI_tuptable

注解

如果该游标的计划不是用CURSOR_OPT_SCROLL 选项创建的,向后获取会失败。

PostgreSQL SPI_cursor_find
PostgreSQL SPI_cursor_move
温馨提示
下载编程狮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; }