在 PHP 中使用 postgresql 存储过程(返回引用游标)的最佳方法?
我正在使用存储过程并从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“更好的方法”是使用 pg_query_params,但一次仅发送 1 个查询/语句:
The 'better way' would be using pg_query_params, but you send only 1 query/statement at a time: