SQLite JDBC 包装器和 matchinfo()
我尝试使用 sqlite 的 matchinfo 函数及其第二个参数,但它抛出错误。 Java 包装器 我正在使用 Xerial 包装器。我正在使用此查询来测试 matchinfo。
SELECT matchinfo(search, 'pcx') AS 'test' FROM search WHERE search MATCH 'a search query'
它抛出这个错误,
SQL error or missing database (wrong number of arguments to function matchinfo()
知道为什么会发生这种情况吗? 这个网站说matchinfo有一个可选的第二个参数,我正在使用fts4来做到这一点。
谢谢
I am trying to use the matchinfo function of sqlite with its second parameter, but it is throwing errors. The Java wrapper I am using the Xerial wrapper. I am using this query to test matchinfo.
SELECT matchinfo(search, 'pcx') AS 'test' FROM search WHERE search MATCH 'a search query'
it throws this error,
SQL error or missing database (wrong number of arguments to function matchinfo()
Any idea why this is happening? this website says the matchinfo has an optional second parameter, and I am using fts4 to do this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 https://bitbucket.org/xerial/ 的 sqlite-jdbc-3.7.15-SNAPSHOT.jar sqlite-jdbc/下载
解决你的问题。
我在Maven中没有找到任何版本。所以你必须手动下载jar。
编辑:
终于在maven中央了。
问候,
简
the sqlite-jdbc-3.7.15-SNAPSHOT.jar from https://bitbucket.org/xerial/sqlite-jdbc/downloads
fixes your problem.
I did not find any version in Maven. So you have to download the jar manually.
Edit:
It's finally in maven central.
Greets,
Jan