duandi8613 2015-12-02 02:10 采纳率: 100%
浏览 82
已采纳

如何检查PHP中是否已存在postgres prepared语句

I have a PHP script that calls a function sometimes multiple times in one script run.

The function looks like this:

function insert_values($values) {
$sql = "insert into...";
pg_prepare($connection,"statement_name",$sql);
pg_execute($connection,"statement_name",array($values));
}

Everything is good so far - when it executes once

However, if my script calls this function more than once on that same connection, PHP gives a warning as:

[Tue Dec 01 20:58:31 2015] [error] [client 10.64.241.13] PHP Warning:  pg_prepare(): Query failed: ERROR:  prepared statement "insert_values" already exists in /var/www/include/classes/classes.php on line 955

Now, if this was just a a simple PHP warning, I might not pay attention to it.

However on the Postgres end, it states Query failed: ERROR - so of course the query does not run.

Obviously I understand why Postgres would kill somebody creating a NEW prepared statement with the same name on the same connection.

So.... does anybody know if there is a simple way to check if the prepared statement already exists and if it already exists, then just to take the already-created prepared statement?

Thank you.

  • 写回答

1条回答 默认 最新

  • dpbsy60000 2015-12-02 02:24
    关注

    One solution would be to use a static variable to indicate whether you have created the statement yet. The first time the function executes, $once is false, and it will prepare the statement and change $once to true. After that, it won't recreate the statement.

    function insert_values($values) {
        static $once = false;
        if ($once === false) {
            $sql = "insert into...";
            pg_prepare($connection,"statement_name",$sql);
            $once = true;
        }
        pg_execute($connection,"statement_name",array($values));
    }
    

    A static variable exists only in a local function scope, but it does not lose its value when program execution leaves this scope.

    From: http://php.net/manual/en/language.variables.scope.php#language.variables.scope.static

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 基于信创PC发布的QT应用如何跨用户启动后输入中文
  • ¥20 非root手机,如何精准控制手机流量消耗的大小,如20M
  • ¥15 远程安装一下vasp
  • ¥15 自己做的代码上传图片时,报错
  • ¥15 Lingo线性规划模型怎么搭建
  • ¥15 关于#python#的问题,请各位专家解答!区间型正向化
  • ¥15 unity从3D升级到urp管线,打包ab包后,材质全部变紫色
  • ¥50 comsol温度场仿真无法模拟微米级激光光斑
  • ¥15 上传图片时提交的存储类型
  • ¥15 VB.NET如何绘制倾斜的椭圆