Как реализовать нечувствительный к акценту / диакритике поиск в SQLite? - PullRequest
2 голосов
/ 18 апреля 2011

Этот вопрос связан с вопросом здесь , но я не мог найти ответ.

Я включил поддержку ICU в SQLite и перестроил Db Engine, что теперь? Я проверил поддержку ICU, выполнив SELECT UPPER ("ä"), что приводит к Ä.

1 Ответ

0 голосов
/ 23 ноября 2012

Согласно http://www.sqlite.org/faq.html#q18

(18) Нечувствительное к регистру сопоставление символов Юникода не работает.

The default configuration of SQLite only supports case-insensitive comparisons of ASCII
characters. The reason for this is that doing full Unicode case-insensitive comparisons
and case conversions requires tables and logic that would nearly double the size of the
SQLite library. The SQLite developers reason that any application that needs full Unicode
case support probably already has the necessary tables and functions and so SQLite should
not take up space to duplicate this ability.

Instead of providing full Unicode case support by default, SQLite provides the ability to
link against external Unicode comparison and conversion routines. The application can
overload the built-in NOCASE collating sequence (using sqlite3_create_collation()) and
the built-in like(), upper(), and lower() functions (using sqlite3_create_function()).
The SQLite source code includes an "ICU" extension that does these overloads. Or,
developers can write their own overloads based on their own Unicode-aware comparison
routines already contained within their project.
...