在Oracle中添加的中文变成"靠靠靠..."

时间:2020-11-27 07:46:26

如果安装的ORACLE字符集为非中文字符集(例如WE8ISO8859P1),使用System.Data.OracleClient作为驱动插入的中文字符串会全部变成“靠靠靠”之类的怪串(两个汉字一个字符串),可以使用如下两种解决方案:

1、使用System.Data.OleDb作为数据驱动,其连接字符串格式如下所示:

Provider=MSDAORA.1; Data Source=服务名; User Id=用户名; Password=口令; conn.cursorlocation=3

2、重新编码字符串

public string GetOracleCh(string str)  
{
  	Encoding gbk_encoder = Encoding.GetEncoding(936);	//GBK  
	byte[] bs = gbk_encoder.GetBytes(str);
  	char[] cs = new char[bs.Length];
  	for (int i = 0; i < bs.Length; i++)
  		cs[i] = Convert.ToChar(bs[i]);
  	return new String(cs); 
}
同时也出现了对应的问题,那就是使用常规手段从数据库出中取出的字符串是乱码,同样使用上面的两种解决方案,第二种解决方案对应的代码如下所示:

 

public string GetChString(string str)  
{
  	byte[] bs = new byte[str.Length];
  	for (int i = 0; i < str.Length; i++)
  		bs[i] = Convert.ToByte(str[i]);
  	Encoding gbk_encoder = Encoding.GetEncoding(936);
  	return gbk_encoder.GetString(bs); 
}