I'm programming for the Android, using SQLITE's FTS3 tables (virtual tables). Is there any way to have a query return null values in the same query one uses the MATCH statement?
As an example, i have tried the following:
Select rowid, Category From 'MyTable' Where Category IS NULL OR Category Match 'Term1 OR Term2 OR Term3 -Term4'
I got a run time error; apparently I can't combine them.
I have also tried including various match inputs like '', "", ''''', """"", 0, NULL, etc to try to get the match function to include Null values. Can't find any documentation if there is a special parameter to include.
Any ideas?