SPI_cursor_open_with_args — 使用一个查询和参数建立一个游标
Portal SPI_cursor_open_with_args(const char *name
, const char *command
, intnargs
, Oid *argtypes
, Datum *values
, const char *nulls
, boolread_only
, intcursorOptions
)
SPI_cursor_open_with_args
建立一个将
执行指定查询的游标(在内部是一个 portal)。大部分参数具有和
SPI_prepare_cursor
和SPI_cursor_open
中相应参数相同的含
义。
对于一次性的查询执行,这个函数应该比
SPI_prepare_cursor
加上其后的
SPI_cursor_open
更好。如果相同的命令
要被用很多不同的参数执行,哪种方法更快就要取决于重做计划的
代价与定制计划带来的好处之间谁更有利。
被传入的参数数据将被复制到游标的 portal 中,因此在该游标仍然存在时 可以释放掉被传入的参数数据。
const char * name
portal 的名字,或者设置成NULL
让系统选择一个名称
const char * command
命令字符串
int nargs
输入参数的数量($1
、$2
等等)
Oid * argtypes
一个长度为nargs
的数组,它包含参数的
数据类型的OID
Datum * values
一个长度为nargs
的数组,它包含实际的参数值
const char * nulls
一个长度为nargs
的数组,它描述哪些参数为空值
如果nulls
为NULL
,
那么SPI_cursor_open_with_args
会假设没有参数
为空值。否则,如果对应的参数值为非空,
nulls
数组的每一个项都应该是' '
;如果对应参数值为空,
nulls
数组的项应为'n'
(在后
面的情况中,对应的values
项中的值没有
关系)。注意nulls
不是一个文本字符串,
它只是一个数组:它不需要一个'\0'
终止符。
bool read_only
true
表示只读执行
int cursorOptions
游标选项的整数型位掩码,为零会产生默认行为
指向包含该游标的 portal 的指针。注意这里没有错误返回约定,
任何错误都将通过elog
报告。