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 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!