如何解決MySQL 5.5的中文亂碼問題

來源:互聯網
上載者:User

1.在mysql壓縮目錄下,有一堆的參數設定檔,比如:my-innodb-heavy-4G.ini,複製一下這個檔案,自己改下名字,比如叫:my.ini

2.開啟my.ini檔案,增加如下參數: [client]:增加default-character-set=utf8參數

 
  1. [client] 
  2. #password = [your_password] 
  3. port = 3306 
  4. socket = /tmp/mysql.sock 
  5. default-character-set=utf8 

[mysqld]:增加如下3個參數

 
  1. [mysqld] 
  2. default-storage-engine=INNODB 
  3. character-set-server=utf8 
  4. collation-server=utf8_general_ci 
  5. # generic configuration options 
  6. port = 3306 
  7. socket = /tmp/mysql.sock  

3.設定完成後,重啟下mysql服務

4.串連上你的資料庫之後,輸入命令:SHOW VARIABLES LIKE '%char%';即可查看到現在你的資料庫所使用的字元集了:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.