gpt4 book ai didi

python 和 sqlite3,检查我是否可以使用 fts5 扩展?

转载 作者:太空宇宙 更新时间:2023-11-04 07:07:11 25 4
gpt4 key购买 nike

我最近发现 FTS5扩展已经发布。
检查我的应用程序是否可以在用户系统上使用它的最佳方法是什么?
只检查 python3 版本,或者根据 release page 检查 sqlite3.sqlite_version ??还是别的?

最佳答案

/这是之前对 OP 帖子的编辑,但我将其移至此处以明确问题

所以这感觉好像可行,在问题 here 中找到了它

import sqlite3

con = sqlite3.connect(':memory:')
cur = con.cursor()
cur.execute('pragma compile_options;')
available_pragmas = cur.fetchall()
con.close()

print(available_pragmas)

if ('ENABLE_FTS5',) in available_pragmas:
print('YES')
else:
print('NO')

但奇怪的是,我在几台虚拟机上运行它,没有一个启用 fts4,但我却像什么都没有一样愉快地使用它......也许它的 fts3/fts4 相当相同,或者它可能完全错误.

/编辑
来自文档

Note that enabling FTS3 also makes FTS4 available. There is not a separate SQLITE_ENABLE_FTS4 compile-time option. A build of SQLite either supports both FTS3 and FTS4 or it supports neither.

关于python 和 sqlite3,检查我是否可以使用 fts5 扩展?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36655777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com