如何解决MySQL插入部分中文字符的报错问题

本文介绍了一种Winform程序中出现字符集异常的具体情况,并详细记录了解决该问题的过程。通过调整客户端、服务器、数据库及表的字符集设置为一致的UTF-8格式,最终解决了“Incorrect string value”这一异常。
摘要由CSDN通过智能技术生成

Winform程序,进行添加功能,保存时,系统给出异常信息”Incorrect string value: ‘\xACQ\xCE\xC4\xD7\xAA…’ for column ‘TaskDes’ at rows“,在网上查了很多资料,最终解决了,数据库方面又长见识了,高兴!
问题原因:字符集的设置不一致导致
解决方法:需将客户端、服务器、数据库、表、字段的字符集设置成一致,具体如下:
1、修改MySQL的my.ini文件的信息,添加以下信息(红色部分)

[client]
port=3306
default-character-set=utf8
[mysql]
default-character-set=utf8
character_set_server=utf8
# SERVER SECTION
# -------------------------------------------------------------
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this 
# file.
#
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="D:/Program Files/MySQL/MySQL Server 5.5/"
#Path to the database root
datadir="C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.5/Data/"
# The default character set that will be used when a new schema or table is
# created and no character set is defined
character_set_server=utf8

2、修改数据库的字符集:SET character_set_database=utf8;
3、修改表的字符集:ALTER TABLE 表名 CONVERT TO CHARACTER SET utf8;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>