Reputation: 40761
It seems that Sqlite FTS don't support searching Japanese characters according to my experiments , and discussion here.
#select * from tblEvent_shortdes where short_des MATCH 'BSジャパンの見どころ'
#return nothing
select * from tblEvent_shortdes where short_des MATCH 'パンの見'
Customize tokenizer in FTS seems to be the way to accomplish this but I did not found any promising open sourced tokenizer for Japanese. Will ICU tokenizer do?
Upvotes: 2
Views: 1289