MySQL Variables character_set_server 数据库 参数变量解释及正确配置使用
本站中文解释
character_set_server参数决定MySQL服务器和客户端之间文件传输使用的字符集。它设置服务器全局默认字符集,也就是运行SQL语句操作的默认字符集,这个参数对MySQL(服务器和客户端)的所有的表的每行数据都有影响。
character_set_server参数的设置方法比较简单:在MySQL控制台中,输入命令
SET character_set_server = charset_name,其中charset_name可以是utf8或者latin1等等。
例如:SET character_set_server = UTF8;
官方英文解释
character_set_server
Command-Line Format | --character-set-server=name |
---|---|
System Variable | character_set_server |
Scope | Global, Session |
Dynamic | Yes |
Type | String |
Default Value | latin1 |
The servers default character set. See
Section 10.15, “Character Set Configuration”. If you set this
variable, you should also set
collation_server
to specify
the collation for the character set.