如果想测底解决mysql中文乱码问题需要对mysql的配置文件进行修改。本人安装的是mysql5.6版本。里面默认的配置文件名是my-default.ini 需要把配置文件名改为my.ini并且修改配置文件为:
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.
[mysqld]
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
# These are commonly set, remove the # and set as required.
basedir = C:\Program Files\MySQL5.6
datadir = C:\Program Files\MySQL5.6\data
# port = .....
# server_id = .....
init_connect = ‘SET NAMES utf8’
character-set-server = utf8
[client]
no-beep
[mysql]
default-character-set=utf8
关闭 net stop mysql
开启 net start mysql
show variables like '%char%';
网友评论