C# 查询MySQL时,MySQL报错,因为查询语句中出现乱码
报错如下
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '??,Limit_lenth as ??,Limit_width as ??,Limit_height as ??,Limit_Weight as ?? fr' at line 1
这个错误是因为我升级MySQL版本导致的问题
因为新的MySQL版本可能编码的问题,我虽然新建数据库的时候设置utf-8格式,但是不能用。
解决方式有两种
1、在C#代码中的数据库连接字符串中添加Charset=utf8设置即可
2、更换其他版本的MySQL