如何在sqlite中使用editdist3

根据 answer to another question,在sqlite中,Levenshtein距离在名为editdist3的sql函数中实现. (比较 documentation)

现在,当我尝试使用它时,我得到的只是一个不存在的错误

╰┄┄> sqlite3
sqlite version 3.11.1 2016-03-03 16:17:53
Enter ".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.zip
unzip 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架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能