上次遇到的是向mysql插入中文數據,中文數據亂碼了。此次直接就不能插入中文數據了!!!!mysql
參考博文:http://blog.csdn.net/generalyy0/article/details/7598027sql
總結:markdown
①: 檢查數據表全部字段的狀態
show full columns from 表名;
②:發現Collation項非utf8,修改它!
alter table 表名change 字段名 字段名 varchar(100) character set utf8 collate utf8_unicode_ci not null default '';
.net