質問

I'm using SQLite FTS3 tables in my application. But search with FTS table is case sensitive for non English characters.

Is there simple way to make case insensitive search support for unicode symbols?

役に立ちましたか?

解決

When you insert value in FTS table insert it in lower case. When you query matches convert your word to lower case too!

他のヒント

Sqlite started support unicode61 tokenizer for fts index, which would help in this case. http://www.sqlite.org/fts3.html#unicode61

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top