在 PHP 中使用 postgresql 存储过程(返回引用游标)的最佳方法?

发布于 2024-07-13 08:21:30 字数 643 浏览 5 评论 0原文

我正在使用存储过程并从 PHP 调用它们(我也在 Java 应用程序中使用相同的过程)。

现在我这样做(有效):

if(!($result = pg_query($connection, 'BEGIN; SELECT '.$query.'; FETCH ALL IN '.self::$cursor.';'))) return NULL;

其中 $query 类似于“CALL create_account('foo', 'bar', 'etc')” 并且 $cursor 只是“ref_cursor”,因为那是光标名称(是的,我知道它 看起来像是一个黑客......)。

我知道过程(和准备好的语句)的好处,并且我想知道执行上述内容是否有任何意义。 据我所知,程序是预编译的,但上面的查询不是。 那么我是否只是自欺欺人地相信我会从中获得一些性能提升? 我有点受我的程序的束缚,因为我有一个 Java 自动生成器可以为我编写它们。 在这种情况下使用 PDO 是否更好? 我在网上搜索了有关 pgsql ref 游标+ pdo 的内容,但没有找到太多。 我知道我可以只使用 PDO 准备好的语句,但这不会与我的程序配合。

-英维

I'm using stored procs and call them from PHP (I use the same procedures in a Java app too).

Right now I do it this way (which works):

if(!($result = pg_query($connection, 'BEGIN; SELECT '.$query.'; FETCH ALL IN '.self::$cursor.';'))) return NULL;

where $query is something like "CALL create_account('foo', 'bar', 'etc')"
and $cursor is just "ref_cursor" since that is the cursor name (and yes, I know it
seems like a hack...).

I know about the benefits of procedures (and prepared statements), and I wonder if there's any point in executing the above. A procedure is pre-compiled as far as I know, but the query above is not. So am I just fooling my self in believing that I would get some performance gain in this? I'm kind of bound to my procedures because I have an auto generator in Java that writes them for me. Is it better to use PDO in this case? I've searched on the net for something on pgsql ref cursors + pdo, but I didn't find much.
I know I could just use PDO prepared statements but that would not coop with my procedures.

-Yngve

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怕倦 2024-07-20 08:21:30

“更好的方法”是使用 pg_query_params,但一次仅发送 1 个查询/语句:

 pg_query_params('SELECT procedure_name($1, $2);'.array('foo','bar'));

The 'better way' would be using pg_query_params, but you send only 1 query/statement at a time:

 pg_query_params('SELECT procedure_name($1, $2);'.array('foo','bar'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文