Postgresql 中文操作指南
Synopsis
int SPI_execute_plan_with_paramlist(SPIPlanPtr plan,
ParamListInfo params,
bool read_only,
long count)
Description
SPI_execute_plan_with_paramlist 执行由 SPI_prepare 准备的语句。此函数等同于 SPI_execute_plan ,只是提供给查询传递的参数值的的信息存在差异。 ParamListInfo 表示可以通过便捷的方式传递已以该格式显示的值。它还支持通过 ParamListInfo 中指定挂接式函数使用动态参数集。
此函数现已弃用,原因是赞成使用 SPI_execute_plan_extended 。