“sqlite”和“sqlite”有什么区别?和“pysqlite2/sqlite3”模块?

发布于 2024-08-06 11:19:36 字数 149 浏览 6 评论 0原文

我放弃了让“sqlite3”工作,但我刚刚发现(通过帮助(“模块”))我有“sqlite”模块。我测试了它(创建表,插入一些值等等)并且它工作正常。但在我开始使用这个模块之前,我想知道它与 sqlite3 模块相比是否有一些显着的限制?有人可以给我建议吗?

先感谢您。

I gave up to make "sqlite3" working but I just found out (with help("modules")) that I have "sqlite" module. I tested it (create table, insert some values and so on) and it works fine. But before I start to use this module I would like to know if it has some significant limitations in comparison with sqlite3 module? Can anybody, pleas, give me advise?

Thank you in advance.

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

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

发布评论

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

评论(2

长发绾君心 2024-08-13 11:19:36

根据 此 wiki,您可以询问您的模块到底是什么版本,例如:

>>> import sqlite
>>> sqlite.version
'1.0.1'
>>> sqlite._sqlite.sqlite_version()
'2.8.16'

那么什么版本当你尝试这个时你看到数字吗?

提供了从 pysqlite 版本 2.3.4 到 2.5.5(大约 2 年的版本)的发行说明链接列表 此处 - 因此,如果您使用的是 Python 2.5 附带的 sqlite3 中嵌入的 2.3.2 或 Python 2.6 附带的 2.4.1,您可以准确跟踪您修复了哪些功能、优化和错误可能会丢失(一长串)。但 1.0.1 已经太久远了,我不知道在哪里可以找到从 2.3.2 开始的进一步更改列表!看起来像是考古学家的工作……;-)。

我在此处看过pysqlite教程;完整文档(LaTex 来源)此处;祝你好运!

As per this wiki, you can ask your module exactly what version it is, e.g.:

>>> import sqlite
>>> sqlite.version
'1.0.1'
>>> sqlite._sqlite.sqlite_version()
'2.8.16'

So what versions numbers do you see when you try this?

A list of release note links from pysqlite version 2.3.4 to 2.5.5 (about 2 years' worth of releases) is available here -- so if you were using the 2.3.2 embedded in the sqlite3 that comes with Python 2.5 or the 2.4.1 that comes with Python 2.6 you could trace exactly what features, optimizations and bug fixes you might be missing (a long list). But 1.0.1 is SO far back that I don't know where to find a further list of changes from there to 2.3.2! Looks like a job for an archeologist...;-).

I've seen a pysqlite tutorial here; full docs (LaTex sources) here; good luck!

别想她 2024-08-13 11:19:36

我只安装了 sqlite,“导入 sqlite3”有效,但“导入 sqlite”无效。您可以使用 sqlite3.sqlite_version 查找包版本。因此

$ pip install sqlite==3.33.0
$ python
>>> import sqlite3
>>> sqlite3.version
'2.6.0'
>>> sqlite3.sqlite_version
'3.33.0'

I just install sqlite, and 'import sqlite3' works but not 'import sqlite'. You can use sqlite3.sqlite_version to find the package version. Thus

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