db 游标 - python 中的事务
打开/关闭数据库游标的操作成本高吗?最佳实践是什么,是使用不同的游标还是在不同的 sql 执行之间重用相同的游标?如果事务由在属于同一连接的相同或不同游标上执行的执行组成,这很重要吗?
谢谢。
Is opening/closing db cursor costly operation? What is the best practice, to use a different cursor or to reuse the same cursor between different sql executions? Does it matter if a transaction consists of executions performed on same or different cursors belonging to same connection?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在很大程度上取决于您的数据库以及您选择的 python 实现 - 您是否尝试过分析一些简短的测试操作?
This will depend a lot on your database as well as your chose python implementation - have you tried profiling a few short test operations?