I need to store and compare text in several language in a field of a Mysql database. Actually, I set uc2 for character set and ucs_bin for collate, and I find that it does not work for cyrillic and greek characters.
How can I solve this problem? Any suggestion?
Thanks in advance
Teodoro

link|improve this question

76% accept rate
feedback

1 Answer

Use utf8 as a character set, with collation utf8_unicode_ci -- it is the most robust combination (although slightly slower than using utf8_general_ci).

link|improve this answer
It seems to not discriminate between accented characters when compare them.. – Antonio F. Jan 26 '11 at 10:48
the _ci stands for case-insensitive and compares accented characters the same, too. Use collation utf8_bin to distinguish between accented characters and case. – ash Jan 26 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.