Android Sqlite FTS NOT Operation

ε祈祈猫儿з 提交于 2019-12-12 15:14:52

问题


I'm trying to order a fast text search so that exact matches are first and partial matches are last.

I've created a query that works in SQLiteStudio:

SELECT value, 1 AS _order FROM glossfts
WHERE glossfts.value MATCH 'dog'
UNION
SELECT value, 2 AS _order FROM glossfts
WHERE glossfts.value MATCH 'dog* NOT dog'
ORDER BY _order

So the result would be

Beware of dog                                     1
Disliked by everybody, not even a dog will eat    1
Bad dog                                           1
Creed, dogma                                      2
Dogs                                              2
Dogwood                                           2

And that works great but when I use the same query in android I only get

Beware of dog                                     1
Disliked by everybody, not even a dog will eat    1
Bad dog                                           1
Disliked by everybody, not even a dog will eat    2

back as it seems to be interpreting the:

MATCH 'dog* NOT dog'

as

MATCH 'dog* not dog'

Whats going on?


回答1:


Android FTS uses Standard Query Syntax, Not Enhanced.

As such, it does not recognize "NOT" or "AND" as operators. It's actually trying to match them to the text of your db columns. Which is why on the Android, your only match came from an entry with "not" in the actual text.

You have to use "-" for NOT and blank space for AND. Thus, your syntax should look like:

WHERE glossfts.value MATCH 'dog* -dog'

http://www.sqlite.org/fts3.html




回答2:


Apparently, the SQLite on that Android device has be compiled with a different FTS query syntax.

Check the output of PRAGMA compile_options; for ENABLE_FTS3_PARENTHESIS, and adjust your queries accordingly.



来源:https://stackoverflow.com/questions/17132597/android-sqlite-fts-not-operation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!