gpt4 book ai didi

php - 获取PostgreSQL的RAISE NOTICE的所有通知

转载 作者:可可西里 更新时间:2023-11-01 00:21:24 25 4
gpt4 key购买 nike

我有一个像这样的多行的大数据库函数

RAISE NOTICE 'some step completed';

我想在我的 PHP 应用程序中获取所有这些通知。我只找到了 pg_last_notice() 函数,它只返回最后一个通知。

有什么办法可以获得所有通知吗?


例子:数据库功能:

CREATE OR REPLACE FUNCTION do_smth()
RETURNS void AS
$BODY$

BEGIN

-- some actions
RAISE NOTICE 'Result of the actions:...';
-- some other actions
RAISE NOTICE 'Result of the other actions..';

$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;

PHP代码:

<?php
// ...
$db->exec("SELECT do_smth()"); // executing DB function

$last_notice = pg_last_notice($db_connection);
// returns 'NOTICE: Result of the other actions..'

最佳答案

根据libpq notice documentation “默认通知处理函数在 stderr 上打印消息,但应用程序可以通过提供自己的处理函数来覆盖此行为。”

在您的情况下,“应用程序”(php 本身)通过指定自定义通知处理程序覆盖此行为,称为 _php_pgsql_notice_handler :

Line #1367: PQsetNoticeProcessor(pgsql, _php_pgsql_notice_handler, (void*)Z_RESVAL_P(return_value));

这意味着 PostgreSQL 通知不会进一步传播到 stderr,而是由该处理程序捕获和处理。

在处理程序本身(第 827 行)中,您可以看到每次发出通知时,php 都会更新保存它的变量,并且不会将值附加到某个数组。因此最后只有最后一个通知存在于该变量中,可通过调用 pg_last_notice() 获得。

因此,看起来不可能从 PHP 中获取以前的 PostgreSQL 通知。

但是,如果您进一步查看同一个通知处理程序,您会发现它正在将通知写入错误日志,以防 pgsql.ignore_notices = 0, pgsql.log_notices = 1 并且 E_NOTICE 包含在 error_reporting 中。我想通过一些 php 错误处理函数,您将能够获得一些东西。

关于php - 获取PostgreSQL的RAISE NOTICE的所有通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21110093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com