环境: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;
时间: 2024-10-12 14:28:08