Hello
Trying to get titles from my entries sorted correctly in Swedish, so I’d need to change the MySQL collation to utf8_swedish_ci.
The following works fine:
select title from exp_channel_titles where channel_id = 5 order by title collate utf8_swedish_ciHowever, utf8_general_ci (EE default) or utf8_unicode_ci (what otherwise is considered the collation you should use http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci) doesn’t return the expected order according to Swedish rules.
The question is; what is the supported, most correct way of doing this? Should the whole database be changed? Only the exp_channel_titles? Only exp_channel_titles.title?
Does database.php need to be changed?
Thanks