Postgresql 中文操作指南

SPI_execute_plan_with_paramlist

SPI_execute_plan_with_paramlist — 执行由 SPI_prepare 准备的语句

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

Arguments

  • SPIPlanPtr _plan_

    • * 已准备好的语句(由 SPI_prepare 返回)

  • ParamListInfo _params_

    • * 包含参数类型和值的数据结构;如果为无,则为 NULL

  • bool _read_only_

    • true for read-only execution

  • long _count_

    • 要返回的最大行数,或 0 以表示无限制

Return Value

返回值同 SPI_execute_plan

如果成功,则 SPI_processedSPI_tuptable 会像 SPI_execute_plan 中那样设置。