MySQL 亂碼實戰解決ERROR 1366 (HY000): Incorrect string value: '

season0891發表於2010-05-16

ERROR 1366 (HY000): Incorrect string value:

此種亂碼解決方案如下:

首先,設定自己資料庫的編碼統一:

Connection id:          81
Current database:
Current user:           root@localhost
SSL:                    Not in use
Using delimiter:        ;
Server version:         5.0.67-community-nt MySQL Community Edition (GPL)
Protocol version:       10
Connection:             localhost via TCP/IP
Server characterset:    gbk
Db     characterset:    gbk
Client characterset:    gbk
Conn.  characterset:    gbk

TCP port:               3306

隨後到自己的表裡面:

如我的這個表:content 表

+---------+-------------+------+-----+---------+----------------+
| Field   | Type        | Null | Key | Default | Extra          |
+---------+-------------+------+-----+---------+----------------+
| id      | int(11)     | NO   | PRI | NULL    | auto_increment |
| ad      | smallint(6) | NO   |     | 0       |                |
| title   | char(30)    | YES  |     | NULL    |                |
| author  | varchar(30) | YES  |     | NULL    |                |
| content | text        | YES  |     | NULL    |                |
+---------+-------------+------+-----+---------+----------------+

mysql> insert into content(title,author,content) values('插入成','修改於','文字元');

立刻報錯:

ERROR 1366 (HY000): Incorrect string value: '\xD0\xDE\xB8\xC4\xD3\xDA' for colum
n 'author' at row 1
mysql> insert into content(title,author,content) values('插入成','修改於','文字
符');
ERROR 1366 (HY000): Incorrect string value: '\xD0\xDE\xB8\xC4\xD3\xDA' for colum
n 'author' at row 1

想招吧,哎:以下是解決方案:

mysql> alter table content modify author varchar(30) character set gbk;

對,就是這一句程式碼。很實用的,將表裡面的所有列都進行一次這樣的“洗禮”,大功告成!


----

不,還沒完,頁面需要宣告用GBK或者GB2312編碼,而且在頁面需要進行轉碼:

String content1 = new String(request.getParameter("content1").getBytes("ISO-8859-1"));

頁面讀取不需要轉碼,寫入需要轉碼


come from:http://www.blogjava.net/chenglu/archive/2009/04/17/MySQL-LuanMa.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-662841/,如需轉載,請註明出處,否則將追究法律責任。

相關文章