In sqlite I:
- Perform a
create virtual MyTable (tokenize =icu ,id text,subject text,abstract text)
- Then successfully
insert info MyTable (id,subject,abstract) values (?,?,?)
so I have the row: 今天天气不错fmowomrogmeog,wfomgomrg,我是谁erz
When I perform select id from MyTable where MyTable match ‘z*’
it does not return anything,Whenever I search the single letter it returns nothing. However if I search ‘m’ or ‘天气’ or ‘天’,it works.
I know sqlite only support prefix, so I am using ICU. Am I making a mistake?
Note I've looked at the source code on foxmail,it looks to me like I can search ',' 'f' and so on.