将 PostgreSQL 数组数据类型解析为 perl 数组

发布于 2024-11-08 19:48:28 字数 509 浏览 0 评论 0原文

我在将 PosgreSQL 数组数据类型解析为 perl 时遇到了相互移植性问题。

在 SUSE Linux 4.3.2 和 perl v5.10.0 上运行 PostgreSQL 8.3.7 的一台机器上,postgres 数组数据类型被解析为 perl 数组,而在 Red Hat 4.1.2-46 和 perl v5.8.8 上运行 PostgreSQL 8.4.4 的另一台机器上相同的数据类型被解析为表示 posgres 数组的字符串,例如。 “{{4,315}}”。在这两种情况下都使用相同的非常简单的代码。

use DBI;
$dbh = DBI->connect(DBI:pg [...]);
$res = $dbh -> selectall_arrayref(select [...]);

现在的问题是:

我如何强制一种行为,最好是前一种行为(解析为 perl 数组)? 这种行为取决于什么? (perl 版本?驱动程序?postgres 设置?,postgres 版本?)

I have a of inter-portability problem with parsing PosgreSQL array datatype to perl.

On one machine running PostgreSQL 8.3.7 on SUSE Linux 4.3.2 and perl v5.10.0 the postgres array datatype is parsed as perl array and on other machine running PostgreSQL 8.4.4 on Red Hat 4.1.2-46 and perl v5.8.8 the same datatype is parsed as a string representing an posgres array eg. '{{4,315}}'. In both cases same very simple code is used.

use DBI;
$dbh = DBI->connect(DBI:pg [...]);
$res = $dbh -> selectall_arrayref(select [...]);

And now the questions:

How can I force one behavior, preferably the former one (parsed as perl array)?
On what does this behavior depend? (perl version? driver? postgres settings?, postgres version?)

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

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

发布评论

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

评论(1

留一抹残留的笑 2024-11-15 19:48:28

好吧,官方文档说你必须将 $dbh->{pg_expand_array} 设置为真值。

不过我自己还没有检查过。

Well, the official docs say you must set $dbh->{pg_expand_array} to a true value.

I haven't checked it myself though.

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