I have the following SQLite query which works great on my local machine:
SELECT * FROM ftdata WHERE ftdata MATCH 'phrase1:this AND phrase2:that'
This doesn't seem to return the same resultset on my Android device as it does on my desktop. It returns far less results on Android. This query appears to return the correct results on both:
SELECT * FROM ftdata WHERE ftdata MATCH 'phrase1:this phrase2:that'
However I would ideally like to combine AND and OR queries instead of being forced to use AND.
Are there certain features of the enhanced query syntax that Android doesn't support? Am I using the incorrect syntax in the first instance?