解决mysql不能插入中文Incorrect string value
程序员文章站
2023-12-31 19:55:04
...
首先我的配置文件的设置的默认字符集是utf8即
选项default-charaset-set=utf8;然后创建一个数据表 create table a_table(b varchar(255) not null);
insert into a_table values('北京');
这个时候插入的是中文,系统会报告错误:Incorrect string value: '\xB1\xB1\xBE\xA9' for column 'b' at;
这个不能插入中文。如果该语句写在了一个文本文件中进行操作,保存的编码是默认的话也会出现这种的错误提示。
解决办法:把文本文件存成utf-8格式的就可以正确执行。
推荐阅读
-
解决mysql不能插入中文Incorrect string value
-
Mysql在debian系统中不能插入和显示中文的解决方法
-
解决mysql不能插入中文Incorrect string value
-
Mysql在debian系统中不能插入和显示中文的解决方法
-
解决mysql不能插入中文Incorrect string value
-
MySQL:1366 - Incorrect string value错误解决办法
-
MySQL存储表情时报错:java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D\x0A...’的解决方法
-
MySQL存储表情时报错:java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D\x0A...’的解决方法
-
php 解决MySQL插入数据出现 Incorrect string value: '\xF0\x9F\x92\x8BTi...'错误
-
MySQL生僻字插入失败的处理方法(Incorrect string value)