解決MySQL中文亂碼的問題

來源:互聯網
上載者:User

解決MySQL中文亂碼的問題

遇到MySQL中文亂碼問題,首先用status命令檢查資料庫的配置,如下:

會顯示資料庫配置的各項資訊。

還可以用 show create database XXX,來顯示建立資料庫的時候的編碼設定。

一般來說,要在建立資料庫的時候指定資料庫的編碼方式,有中文的時候,要指定為utf8。

建立方式如。此時資料庫的預設編碼方式即為utf8。但是此時可能會出現如下錯誤:

Incorrect string value: '\xB1\xB1\xBE\xA9' for column 'b' at;

此時就需要檢查你用來建立資料庫的指令碼格式了。如果是記事本的話,預設的字元編碼格式是 ANSI,所以要以UTF-8再存一次,方才可以。

此時用jdbc程式應該能成功讀取,但是控制台會顯示

這樣亂七八糟的東西,這時候,需要敲入下面命令:

set character_set_results=’gb2312(或者gbk)’;

即可正常顯示。

2.使用指令碼方式建立資料庫的命令

>source 檔案路徑\檔案名稱.sql

本文永久更新連結地址:

相關文章

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.