0

MySQL で character_set_client などの変数を変更するにはどうすればよいですか?

mysql> 'character_set%' などの変数を表示します。
--------------+----------------------
character_set_client | ラテン語1

得るために

character_set_client | utf8
4

1 に答える 1

0

MySQLクライアントを起動するときに指定する必要があります--default-character-set=charset_name

マニュアルから:

       Use charset_name as the default character set for the client and
       connection.

       A common issue that can occur when the operating system uses utf8
       or another multi-byte character set is that output from the mysql
       client is formatted incorrectly, due to the fact that the MySQL
       client uses the latin1 character set by default. You can usually
       fix such issues by using this option to force the client to use the
       system character set instead.

例えば:

$>mysql -uUser -pPassword --default-character-set=utf8

接続文字列を介して設定する方法の例については、こちらを参照してください。

于 2012-09-04T09:33:54.940 に答える