4.7.1 The Character Set Used for Data and Sorting By default, MySQL uses the ISO-8859-1 (Latin1) character set with sorting according to Swedish/Finnish rules. These defaults are suitable for the United States and most of western Europe. All MySQL binary distributions are compiled with --with-extra-charsets=complex. This adds code to all standard programs that enables them to handle latin1 and all multi-byte character sets within the binary. Other character sets will be loaded from a character-set definition file when needed. The character set determines what characters are allowed in names. It also determines how strings are sorted by the ORDER BY and GROUP BY clauses of the SELECT statement. You can change the character set with the --default-character-set option when you start the server. The character sets available depend on the --with-charset=charset and --with-extra-charsets= list-of-charsets | complex | all | none options to configure, and the character set configuration files listed in SHAREDIR/charsets/Index. See Section 2.3.2, "Typical configure Options." As of MySQL 4.1.1, you can also change the character set collation with the --default-collation option when you start the server. The collation must be a legal collation for the default character set. (Use the SHOW COLLATION statement to determine which collations are available for each character set.) See Section 2.3.2, "Typical configure Options." If you change the character set when running MySQL, that may also change the sort order. Consequently, you must run myisamchk -r -q --set-character-set=charset on all tables, or your indexes may not be ordered correctly. When a client connects to a MySQL server, the server indicates to the client what the server's default character set is. The client will switch to use this character set for this connection. You should use mysql_real_escape_string() when escaping strings for an SQL query. mysql_real_escape_string() is identical to the old mysql_escape_string() function, except that it takes the MYSQL connection handle as the first parameter so that the appropriate character set can be taken into account when escaping characters. If the client is compiled with different paths than where the server is installed and the user who configured MySQL didn't include all character sets in the MySQL binary, you must tell the client where it can find the additional character sets it will need if the server runs with a different character set than the client. You can do this by specifying a --character-sets-dir option to indicate the path to the directory in which the dynamic MySQL character sets are stored. For example, you can put the following in an option file: [client] character-sets-dir=/usr/local/mysql/share/mysql/ You can force the client to use a specific character set as follows: [client] default-character-set=charset This is normally unnecessary, however. 4.7.1.1 Using the German Character Set To get German sorting order, you should start mysqld with a --default-character-set=latin1_de option. This affects server behavior in several ways:
4.7.2 Setting the Error Message Language By default, mysqld produces error messages in English, but they can also be displayed in any of these other languages: Czech, Danish, Dutch, Estonian, French, German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Norwegian-ny, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, or Swedish. To start mysqld with a particular language for error messages, use the --language or -L option. The option value can be a language name or the full path to the error message file. For example: shell> mysqld --language=swedish Or: shell> mysqld --language=/usr/local/share/swedish The language name should be specified in lowercase. The language files are located (by default) in the share/LANGUAGE directory under the MySQL base directory. To change the error message file, you should edit the errmsg.txt file, and then execute the following command to generate the errmsg.sys file: shell> comp_err errmsg.txt errmsg.sys If you upgrade to a newer version of MySQL, remember to repeat your changes with the new errmsg.txt file. 4.7.3 Adding a New Character Set This section discusses the procedure for adding another character set to MySQL. You must have a MySQL source distribution to use these instructions. To choose the proper procedure, decide whether the character set is simple or complex:
For example, latin1 and danish are simple character sets, whereas big5 and czech are complex character sets. In the following procedures, the name of your character set is represented by MYSET. For a simple character set, do the following:
For a complex character set, do the following:
The sql/share/charsets/README file includes additional instructions. If you want to have the character set included in the MySQL distribution, mail a patch to the MySQL internals mailing list. See Section 1.7.1.1, "The MySQL Mailing Lists."
blog comments powered by Disqus |
|
|
|
|
|
|
|