如何在 Windows 上使用 python2.7 设置 FTS3/FTS4
默认情况下,FTS3/FTS4 在 python 中不起作用(最高 2.7)。我收到错误:
sqlite3.OperationalError: no such module: fts3or
sqlite3.OperationalError: no such module: fts4
如何解决这个问题?
FTS3/FTS4 doesn't work in python by default (up to 2.7). I get the error:
sqlite3.OperationalError: no such module: fts3
or
sqlite3.OperationalError: no such module: fts4
How can this be resolved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下载最新的sql dll。
替换 python/dll 文件夹中的 sqlite.dll。
Download the latest sql dll.
Replace sqlite.dll in your python/dll folder.
没关系。
从源代码安装 pysqlite 非常简单且足够。
fts3 is enabled by default when installing from source.
never mind.
installing pysqlite from source was easy and sufficient.
fts3 is enabled by default when installing from source.
纳文所说的但是=>
对于 Windows 安装:
在运行 setup.py 进行包安装时...Python 2.7 搜索已安装的 Visual Studio 2008。您可以通过设置欺骗 Python 使用 Visual Studio
。
What Naveen said but =>
For Windows installations:
While running setup.py for for package installations... Python 2.7 searches for an installed Visual Studio 2008. You can trick Python to use Visual Studio by setting
before calling setup.py.
我的回答与Python 2.7无关。但希望它对使用 Python 3.5 的用户有所帮助。我正在使用 sqlite 全文搜索工具。然而,当我尝试插入 FTS3 虚拟表时,
我收到错误 -
FTS4 虚拟表也出现类似错误。从网站获取提示
,我从 此处 下载并复制了 Windows 的 sqlite 预编译二进制文件到我的 Python DLL 目录中(我备份了原始的sqlite.dll)。我的 Python 应用程序开始正常工作。
My answer is not related to Python 2.7. But hope it becomes helpful for users using Python 3.5. I was using sqlite Fulltext search facility. However when I was trying to Insert into a FTS3 Virtual table
I was getting an error -
Similarly error was coming for FTS4 Virtual tables. Taking cue from the site
, I downloaded and copied the sqlite precompiled Binaries for Windows from here into my Python DLL directory (I backed up the original sqlite.dll). My Python application started working fine.