環境:mysql-5.6.25-winx64,MySQL workbench
問題:MySQL更新時出現異常:
warning(s): 1366 Incorrect string value: '\xE8\x82\x96\xE5\xB1\xB1...' for column 'sub_station_name'
解決:
1、數據庫schema字符集設置為utf-8
2、表字符集設置為utf-8
3、中文列字符集設置為utf-8
4、連接url裡面已經指定了CharsetEncode=utf8
第4步非常關鍵。
備注:
1、看數據庫字符集
show create database test;
2、看數據表字符集
show create table t_data;