mysql字符集设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql字符集设置相关的知识,希望对你有一定的参考价值。

配置文件路径: /full/path/mysql/bin/my.cnf (默认为/etc/my.cnf )

[client]
default-character-set=utf8

[mysql]
default-character-set=utf8

[mysqld]
init_connect=‘SET collation_connection = utf8_unicode_ci‘
init_connect=‘SET NAMES utf8‘
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake

查看mysql编码方式
show variables like ‘character%‘;

其中,character_set_client为客户端编码方式;
character_set_connection为建立连接使用的编码;
character_set_database数据库的编码;
character_set_results结果集的编码;
character_set_server数据库服务器的编码;

只要保证以上四个采用的编码方式一样,就不会出现乱码问题。

以上是关于mysql字符集设置的主要内容,如果未能解决你的问题,请参考以下文章

[mysql][ MySQL字符集设置及字符转换]

[mysql][ MySQL字符集设置及字符转换]

怎么设置mysql数据库读取的字符集

CENTOS设置MYSQL字符集

mysql字符集设置

在mysql中设置字符集有啥作用?