SQLite Order By places umlauts & speical chars at end

眉间皱痕 提交于 2019-12-01 08:39:54

The reason is that the SQLite on iOS doesn't come with ICU enabled. So you need to build your own SQLite version with ICU enabled + your own ICU version as static lib + add the ICU .dat and make SQLite load this .dat file. Then you can load any collation via a simple SQL command (i.e. 'icu_load_collation("de_DE", "DEUTSCH")', once after the db was opened)

It doesn't only sound like it's dirt work, it really is. Try to find a version of SQLite + ICU with all of it done already.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!