1. 程式人生 > >mysql字符集設置

mysql字符集設置

ble mysql like 客戶 nec 方式 ini mysql編碼 sha

配置文件路徑: /full/path/mysql/bin/my.cnf (默認為/etc/my.cnf )

[client]
default-character-set=utf8

[mysql]
default-character-set=utf8

[mysqld]
init_connect=‘SET collation_connection = utf8_unicode_ci‘
init_connect=‘SET NAMES utf8‘
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake

查看mysql編碼方式
show variables like ‘character%‘;

其中,character_set_client為客戶端編碼方式;
character_set_connection為建立連接使用的編碼;
character_set_database數據庫的編碼;
character_set_results結果集的編碼;
character_set_server數據庫服務器的編碼;

只要保證以上四個采用的編碼方式一樣,就不會出現亂碼問題。

mysql字符集設置