SPI_execute_plan_with_paramlist — 执行由 SPI_prepare
准备的语句
int SPI_execute_plan_with_paramlist(SPIPlanPtrplan
, ParamListInfoparams
, boolread_only
, longcount
)
SPI_execute_plan_with_paramlist
执行由 SPI_prepare
准备的语句。此函数等同于 SPI_execute_plan
,不同之处在于以不同的方式提供要传递给查询的参数值的信息。对于以该格式已有的值,ParamListInfo
表示形式非常方便。它还支持通过 ParamListInfo
中指定挂钩函数来使用动态参数集。
此函数现已弃用,建议使用 SPI_execute_plan_extended
。
SPIPlanPtr plan
已准备的语句(由 SPI_prepare
返回)
ParamListInfo params
包含参数类型和值的数据结构;如果无,则为 NULL
bool read_only
对于只读执行为 true
long count
要返回的最大行数,或对于无限制为 0
返回值与 SPI_execute_plan
相同。
如果成功,则 SPI_processed
和 SPI_tuptable
会像在 SPI_execute_plan
中一样设置。