现在,当我尝试使用它时,我得到的只是一个不存在的错误:
╰┄┄> sqlite3sqlite version 3.11.1 2016-03-03 16:17:53Enter ".help" for usage hints.Connected to a transIEnt in-memory database.Use ".open filename" to reopen on a persistent database.sqlite> CREATE table test (col1 TEXT);sqlite> INSERT INTO test VALUES ('foobar');sqlite> SELECT * FROM test WHERE editdist3(col1,'f00bar') < 3;Error: no such function: editdist3
我在Gentoo linux上使用sqlite-3.11.1(默认)USE标志icu,readline和secure-delete.
解决方法 事实证明,editdist3包含在必须明确加载的sqlite扩展中.由于我没有在Gentoo sqlite包中找到它,我也必须自己构建它.正如 documentation所说:The spellfix1 virtual table is not included in the sqlite amalgamation
and is not a part of any standard sqlite build. It is a loadable
extension.
首先,我获取了源代码
wget https://sqlite.org/2016/sqlite-src-3110100.zipunzip sqlite-src-3110100.zip
然后它必须编译
gcc -shared -fPIC -Wall -Isqlite-src-3110100 sqlite-src-3110100/ext/misc/spellfix.c -o spellfix.so
最后它可以加载
.load ./spellfix
请注意,sqlite会自动附加扩展名.so.
要在python中使用它 – 这是我的初衷 – 需要完成以下工作:
db = sqlite3.connect(':memory:')db.enable_load_extension(True)db.load_extension('./spellfix')db.enable_load_extension(False)总结
以上是内存溢出为你收集整理的如何在sqlite中使用editdist3全部内容,希望文章能够帮你解决如何在sqlite中使用editdist3所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)