sqlite3 在不支持锁定的文件系统上只读

发布于 2024-10-03 11:05:29 字数 127 浏览 4 评论 0原文

有没有一种简单的方法可以使用兼容 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 技术交流群。

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

发布评论

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

评论(2

随遇而安 2024-10-10 11:05:29

从 Python 3.4.0 开始,您可以使用以下命令以只读模式打开数据库:

db = sqlite3.connect('file:/path/to/database?mode=ro', uri=True)

As of Python 3.4.0 you can open the database in read only mode with the following:

db = sqlite3.connect('file:/path/to/database?mode=ro', uri=True)
野侃 2024-10-10 11:05:29

显然可以使用 APSW,但它不兼容 DB API。

至少 2009 年是这样。

Apparently it is possible using APSW, which is not DB API compliant.

At least that was the case in 2009.

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