将 python 字典传递给 psycopg2 游标

发布于 2024-10-19 19:05:17 字数 330 浏览 0 评论 0原文

我需要调用 PostgreSQL 8.4 函数,该函数需要来自 Python 的 17 个输入参数。这些值存储在字典中。所以我可以写:

cur.execute("SELECT add_user(%s, %s, %s, %s, %s, %s, %s, .......)", user["nr"], user['email']...)

是否可以自动将字典中的值映射到函数参数(与字典中的键同名)?

像这样的东西:

cur.execute("SELECT add_user(*magic-here*)", user)

I need to call a PostgreSQL 8.4 function which requires 17 input paramters from Python. The values are stored in a dictionary. So I can write:

cur.execute("SELECT add_user(%s, %s, %s, %s, %s, %s, %s, .......)", user["nr"], user['email']...)

Is it possible to automatically map the values in the dictionary to the function arguments (which have the same name as the keys in the dictionary)?

Something like:

cur.execute("SELECT add_user(*magic-here*)", user)

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

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

发布评论

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

评论(1

回首观望 2024-10-26 19:05:17

以下语法应该可以做到这一点:

cur.execute("SELECT add_user(%(nr)s, %(email)s, ...) ...", user)

感谢 Thiefmaster 对我最初在这里的内容进行了更正: 参数的 %(keyname)s 格式只是 Python Database API 2.0 - 请参阅 paramstyle 的文档。不幸的是,其他 DB API 2.0 数据库适配器可能不支持此语法。

有关有点类似问题的答案,但有额外的 xkcd 参考,请参阅:使用 psycopg2 / Python DB-API 和 PostgreSQL 进行参数化查询

The following syntax should do it:

cur.execute("SELECT add_user(%(nr)s, %(email)s, ...) ...", user)

Thanks to Thiefmaster for providing a correction to what I had here originally: The %(keyname)s format for parameters is just one of those defined in the Python Database API 2.0 - see the documentation for paramstyle. Unfortunately, other DB API 2.0 database adapters may not support this syntax.

For an answer to a somewhat similar question, but with a bonus xkcd reference, see: Parameterized queries with psycopg2 / Python DB-API and PostgreSQL

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