微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在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)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐