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