答案:问题现象:
当向mysql5.5插入中文时,会出现类似错误
ERROR 1366 (HY000): Incorrect string value: '\xD6\xD0\xCE\xC4' for column
问题原因:
Db characterset的字符集设成了latin1
解决方案:
修改mysql 安装目录下的 my.ini 文件为
default-character-set=utf8
character-set-server=utf8
然后mysql服务,重新创建一个数据库。
上一个:mysql启动提示mysql.host 不存在,启动失败的解决方法
下一个:mysql合并多条记录的单个字段去一条记录编辑