COLLATION
Collation in MySQL Database is a set of rules used in
comparisons. Because many people use MySQL with data to be stored in languages
other than English, they need to select the rules of comparisons which in turn
depends on the character set used for storing that data.
latin1_swedish_ci
collation which is the Swedish case insensitive order. Usually, when someone develops an application that involves localization (using the local language; e.g., Arabic) or Internationalization (i.e., using multiple languages), they resort to Unicode (utf-8) which has several collations. In general, it is a good idea to set the character set to utf-8 and select the relevant collation or just accept the default utf8-general-ci.
0 comments:
Post a Comment