修改mysql預設字元集的方法

來源:互聯網
上載者:User

標籤:style   io   使用   ar   檔案   資料   art   問題   cti   

聲明:本文轉載自互連網

(1) 最簡單的修改方法,就是修改mysql的my.ini檔案中的字元集索引值,

      如 default-character-set = utf8 
          character_set_server = utf8

   修改完後,重啟mysql的服務,service mysql restart

   使用 mysql> SHOW VARIABLES LIKE ‘character%‘;查看,探索資料庫編碼均已改成utf8

(2)還有一種修改mysql預設字元集的方法,就是使用mysql的命令:

      SET character_set_client = utf8 ; 
      SET character_set_connection = utf8 ;
      SET character_set_database = utf8 ;
      SET character_set_results= utf8 ;
      SET character_set_server = utf8 ;
      SET character_set_connection = utf8 ;

一般就算設定了表的mysql預設字元集為utf8並且通過UTF-8編碼發送查詢,你會發現存入資料庫的仍然是亂碼。問題就出在這個connection串連層上。解決方案是在發送查詢前執行一下:
          SET NAMES ‘utf8‘;  
 它相當於下面的三句指令:

      SET character_set_client = utf8 ; 
      SET character_set_connection = utf8 ;
      SET character_set_results= utf8 ;

      

 

  

修改mysql預設字元集的方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.