SPI_prepare
int SPI_execute_plan_with_paramlist(SPIPlanPtr plan, ParamListInfo params, bool read_only, long count)
SPI_execute_plan_with_paramlist执行一个由 SPI_prepare准备好的语句。这个函数与 SPI_execute_plan等效,不过被传递给该查询 的参数值的信息以不同的方式呈现。ParamListInfo表现形 式更方便于把这种格式的值向下传递。它也支持通过 ParamListInfo中指定的钩子函数动态设置参数。
SPI_execute_plan_with_paramlist
SPI_execute_plan
预备语句(由SPI_prepare返回)
包含参数类型和值的数据结构,如果没有则为 NULL
true表示只读执行
要返回的行的最大数量,或者用0表示没有限制
返回值和SPI_execute_plan相同。
成功时,在SPI_execute_plan中会设置 SPI_processed和 SPI_tuptable。
Submit feedback about this site to: