sqlite3 在不支持锁定的文件系统上只读
有没有一种简单的方法可以使用兼容 DB 的 sqlite3 模块以只读方式打开 sqlite3 数据库?我想在不支持锁定的文件系统上以只读方式访问数据库。我知道 C api 支持这一点,但无法找到使用 sqlite3 接口执行此操作的方法。
Is there an easy way to open an sqlite3 database using the DB-compliant sqlite3 module in a way that is read-only? I want to access a database read-only on a file system that doesn't support locking. I know that the C api supports this, but can't figure out a way to do this with the sqlite3 interface.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Python 3.4.0 开始,您可以使用以下命令以只读模式打开数据库:
As of Python 3.4.0 you can open the database in read only mode with the following:
显然可以使用 APSW,但它不兼容 DB API。
至少 2009 年是这样。
Apparently it is possible using APSW, which is not DB API compliant.
At least that was the case in 2009.