C# 是使用Winform操作MYSQL 新增,讀取資料亂碼

來源:互聯網
上載者:User

1.C# Winform 串連MYSQL 對MySQL進行新增,讀取資料操作,使用Mysql.MySql.Data組件進行資料連線及操作
2.mysql教程的版本本較低4.01 不能對Mysql的環境進行配置

來源:http://www.dezai.cn/blog/article.asp教程?id=418

現象:
1.新增資料正常操作,但是插入MYSQL資料庫教程中的對應表中的資料成問號形式


2.Mysql表中中文資料顯示正常,但通過datagridview讀取顯示?號

解決過程

1.在mysql 4.0.1的版本使用set names 'gb2312'這種語句是行不通的,同樣去更改所對應的表的欄位或字元集好像也是不起作用,5.0以上的版本沒有使用過,所以不能提供正常說法,可以嘗試一下

mysql修改表、欄位、庫的字元集 

http://www.dezai.cn/Channel/Code/Detail.aspx?CodeID=d3401000-2abd-4654-be6f-aa7c65c64ff1


2.在串連mysql的字串加上Character Set=utf8或charset=gb2312 應該還是有作用的.

public static readonly string strSMS = "Data Source=188.28.1.36;user id=sale;password=sale;database=mas;Character Set=utf8;"


3.如果是B/S模式,可以嘗試將頁面另存新檔UTF-8格式,或ANSI格式

4.以下這兩個方法解決我的這個大問題

程式碼


//寫入資料庫時進行轉換
public string GB2312_ISO8859(string write)
{
//聲明字元集
System.Text.Encoding iso8859, gb2312;
//iso8859
iso8859 = System.Text.Encoding.GetEncoding("iso8859-1");
//國標2312
gb2312 = System.Text.Encoding.GetEncoding("gb2312");
byte[] gb;
gb = gb2312.GetBytes(write);
//返迴轉換後的字元
return iso8859.GetString(gb);
}

//讀出時進行轉換
public string ISO8859_GB2312(string read)
{
//聲明字元集
System.Text.Encoding iso8859,gb2312;
//iso8859
iso8859 = System.Text.Encoding.GetEncoding("iso8859-1");
//國標2312
gb2312 = System.Text.Encoding.GetEncoding("gb2312");
byte[] iso;
iso = iso8859.GetBytes(read);
//返迴轉換後的字元
return gb2312.GetString(iso);
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.