如何在SQLite中实现重音/变音符号不敏感搜索?

时间:2011-04-18 15:35:01

标签: sqlite system.data.sqlite icu

这个问题与here提出的问题有关,但我找不到答案。

我在SQLite中启用了ICU支持并重建了Db引擎,现在是什么?我通过执行SELECT UPPER(“ä”)检查了ICU支持,结果是Ä。

1 个答案:

答案 0 :(得分:0)

根据http://www.sqlite.org/faq.html#q18

  

(18)Unicode字符的不区分大小写的匹配不起作用。

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.