postgreSQL pl/python 如何从查询中获取返回值?

发布于 2024-11-28 11:55:42 字数 435 浏览 1 评论 0原文

在这个(非常精简的)查询中,如何从 RETURNING 返回 myfile_key?

CREATE OR REPLACE FUNCTION myfunction (src int, OUT result int) AS $$

plan = plpy.prepare("INSERT INTO myfile VALUES (nextval('seq_myfile'),$1,$2)
RETURNING myfile_key", ["integer","integer"] )

$$ LANGUAGE plpythonu;

(其中插入的第一个字段是 myfile_key)

代码不会将值返回到输出,并且无法将其作为标准 python 结果进行查询,如下所示:

result = rv[0]["myfile_key"] 

in this (vey condensed) query, how would one return the myfile_key from RETURNING?

CREATE OR REPLACE FUNCTION myfunction (src int, OUT result int) AS $

plan = plpy.prepare("INSERT INTO myfile VALUES (nextval('seq_myfile'),$1,$2)
RETURNING myfile_key", ["integer","integer"] )

$ LANGUAGE plpythonu;

(where the first field inserted is myfile_key)

The code doesn't return the value to output, and haven't been able to query it as a standard python result, as in:

result = rv[0]["myfile_key"] 

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

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

发布评论

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

评论(1

可遇━不可求 2024-12-05 11:55:42

我假设您的代码中缺少对 plpy.execute 的调用。原则上您有权访问 RETURNING 列,例如 rv[0]["myfile_key"]。不起作用的是 PL/Python 中对 OUT 参数的赋值。我建议您使用普通的 return 语句重写不带 OUT 参数的函数。

I assume there is a call to plpy.execute missing in your code. You are in principle right to access the RETURNING columns like rv[0]["myfile_key"]. What's not working is the assignment to OUT parameters in PL/Python. I suggest that you rewrite your function without OUT parameters using a normal return statement.

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