MySQLdb 模块是否支持准备好的语句?

发布于 2024-08-24 13:19:58 字数 169 浏览 5 评论 0原文

MySQLdb是否支持服务器端准备好的语句?我无法从它的手册中弄清楚这一点。

Does MySQLdb support server-side prepared statements? I can't figure this out from its manual.

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

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

发布评论

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

评论(2

べ繥欢鉨o。 2024-08-31 13:19:58

检查 MySQLdb 包注释

MySQLdb 中的“参数化”是通过转义字符串然后盲目地将它们插入到查询中来完成的,而不是使用 MYSQL_STMT API。因此,unicode 字符串在被数据库接收之前必须经过两个中间表示(编码字符串、转义编码字符串)。

所以答案是:不,不是。

Check the MySQLdb Package Comments:

"Parameterization" is done in MySQLdb by escaping strings and then blindly interpolating them into the query, instead of using the MYSQL_STMT API. As a result unicode strings have to go through two intermediate representations (encoded string, escaped encoded string) before they're received by the database.

So the answer is: No, it doesn't.

妄司 2024-08-31 13:19:58

它有某种参数化,

即使如此,我还是建议您切换到 oursql。与 MySQLdb 相比,它带来了很多优势

  • oursql 具有真正的参数化。
  • oursql 允许文本或二进制数据流入数据库并流出数据库,而不需要在客户端缓冲所有内容。
  • oursql 既可以延迟插入行,也可以延迟获取行。
  • oursql 默认情况下支持 unicode。
  • oursql 支持 python 2.4 到 2.7,在 2.6+ 上没有任何弃用警告(请参阅 PEP 218),并且在 2.7 上不会完全失败(请参阅 PEP 328)。
  • oursql 是根据 BSD 许可证获得许可的。

It has some kind of parameterization, yes.

Even then, I advise you switch to oursql. It brings a lot of advantages over MySQLdb:

  • oursql has real parameterization.
  • oursql allows text or binary data to be streamed into the database and streamed out of the database, instead of requiring everything to be buffered in the client.
  • oursql can both insert rows lazily and fetch rows lazily.
  • oursql has unicode support on by default.
  • oursql supports python 2.4 through 2.7 without any deprecation warnings on 2.6+ (see PEP 218) and without completely failing on 2.7 (see PEP 328).
  • oursql is licensed under the BSD license.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文