Incorrect string value: '\xE4\xB8\x80\xE7\xBA\xA7...' for column 'name' at row 1

时间:2021-09-05 17:08:24

在使用hibernate+mysql测试的时候出现的问题。

其实是编码不一致原因,mysql需要设置数据库为utf8


最简单是使用工具:mysql-front等等。。。



show variables like 'character%';查看字符编码

--更改字符集  
SET character_set_client = utf8 ;  
SET character_set_connection = utf8 ;  
SET character_set_database = utf8 ;  
SET character_set_results = utf8 ;  
SET character_set_server = utf8 ;  



SET collation_connection = utf8 ;  
SET collation_database = utf8 ;  
SET collation_server = utf8 ;  
连接数据库时:
jdbc:mysql://localhost:3306/数据库名?useUnicode=true&characterEncoding=utf8
查询之前:
set names gbk;

存中文显示长度太长,但是字段长度够长,说明字符集没设置
C:\Program Files\MySQL\MySQL Server 5.0\my.ini\
default-character-set=utf8
default-character-set=utf8