mysql插入中文提示 Incorrect string value: 'xB1xB1xBExA9' f
程序员文章站
2024-01-11 14:02:46
...
本文章来介绍一下关于mysql插入中文提示 Incorrect string value: \'xB1xB1xBExA9\' for column \'xxx\' at;,有需要了解的朋友可参考一下
选项default-charaset-set=utf8;
然后创建一个数据表 create table a_table(b varchar(255) not null);
insert into a_table values('北京');
这个时候插入的是中文,系统会报告错误:Incorrect string value: 'xB1xB1xBExA9' for column 'b' at;
这个不能插入中文。如果该语句写在了一个文本文件中进行批处理操作,保存的编码是默认的话也会出现这种的错误提示。
解决办法:把文本文件存成utf-8格式的就可以正确执行。
推荐阅读
-
MySQL 中文insert报错Incorrect string value:
-
解决mysql不能插入中文Incorrect string value
-
解决mysql不能插入中文Incorrect string value
-
解决mysql不能插入中文Incorrect string value
-
MySQL存储表情时报错:java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D
-
MySQL存储表情时报错:java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D
-
mysql存储4字节的表情包数据报异常_Incorrect string value: '\xF0\x9F\x98\x84\xF0\x9F
-
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...'错误