如何在 pysqlite 中启用事务性 DDL?
我使用的是 pysqlite,默认情况下,它不启用事务性 DDL(尽管 DDL 是来自 sqlite3 客户端的事务性)。
如何在 pysqlite 中启用事务性 DDL?
I am using pysqlite which, by default, does not enable transactional DDL (although DDL is transactional from the sqlite3 client).
How do I enable transactional DDL within pysqlite?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pysqlite 始终执行隐式提交,除非小写查询字符串以可选空格和“select”、“insert”、“update”、“delete”或“replace”之一开头。没有优雅的方法可以关闭此功能。要解决此问题,您可以编辑 pysqlite C 源代码。
pysqlite always performs an implicit commit unless the lowercased query string starts with optional whitespace and one of 'select', 'insert', 'update' , 'delete', or 'replace'. There is no elegant way to turn this off. To work around this, you could edit the pysqlite C source code.