I am having some problems with special characters in my scenario. I have a sqlite db created using fts3.
When I use SELECT col_1, col_2, offsets(table) FROM table WHERE table MATCH 'h*' LIMIT 50;
I am able to get words which start with h.
but when I am using
SELECT col_1, col_2, offsets(table) FROM table WHERE table MATCH '@*' LIMIT 50;
I am not getting strings which start with @.
Where am I going wrong? Any pointer regarding approach would be great.