Postgresql PQgetvalue:数组返回
我创建了一个表,如下所示:
CREATE TABLE tbl_test
(
id bigserial PRIMARY KEY,
interest int ARRAY[2]
);
我使用 PQexec(conn, "SELECT * FROM tbl_test"); 得到了
PGresult* res
现在,我如何获得 int []
来自 PQgetvalue(res, 0, 1)
。
我不想依赖 array.h
中定义的结构,因为它们可能会改变。
我在 Postgresql 文档中找不到任何可以做事的 API。
请指教。
问候,
玛雅克
I've a table created like:
CREATE TABLE tbl_test
(
id bigserial PRIMARY KEY,
interest int ARRAY[2]
);
I got PGresult* res
using PQexec(conn, "SELECT * FROM tbl_test");
Now, how can I get int[]
from PQgetvalue(res, 0, 1)
.
I don't want to depend on structs defined in array.h
as they might change.
I could not find any API in Postgresql docs which can do things.
Please advise.
Regards,
Mayank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PQgetvalue() 返回字段值的字符串表示形式,除非您指定二进制游标。无论哪种情况(字符串或二进制游标),您都需要提供代码来将结果操作为您想要的形式。
您可能会在 PostgreSQL 源代码 中找到一些想法。
contrib/intarray 中有一些代码。
在 http://doxygen.postgresql.org/ 中,单击“文件”,然后搜索“数组”。
在字符串级别,即 PQgetvalue() 返回的内容,可能很容易通过 Google 搜索到一些从逗号分隔字符串中提取整数的代码。
PQgetvalue() returns the string representation of the field value unless you specify a binary cursor. In either case (string or binary cursor) you'll need to supply the code to manipulate the result into the form you want.
You might find some ideas in the PostgreSQL source code.
And there's some code in contrib/intarray.
At http://doxygen.postgresql.org/, click "Files", then search for "array".
At the string level, which is what PQgetvalue() returns, it's probably easy to Google up some code that extracts integers from an comma-delimited string.