문제

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