MySQL Variables lc_messages 数据库 参数变量解释及正确配置使用
本站中文解释
mysql参数变量lc_messages表示数据库服务器在处理消息时使用的语言,该参数一般由MySQL服务器安装程序自动设置,允许用户使用它来改变消息语言。可以使用以下语言设置该参数:
1. Chinese(Simplified Chinese 中文)
2. Chinese_Taiwan(Taiwanese Traditional Chinese 中文台湾繁体)
3. Chinese_Hong_Kong(Hong Kong Traditional Chinese 中文香港繁体)
该参数设置可以使用以下SQL语句:
SET GLOBAL lc_messages = ‘Chinese’;
SET GLOBAL lc_messages = ‘Chinese_Taiwan’;
SET GLOBAL lc_messages = ‘Chinese_Hong_Kong’;
设置完成后,任何客户端连接到MySQL数据库服务器时,MySQL服务器都会使用指定语言来处理和显示消息。
官方英文解释
lc_messages
Command-Line Format | --lc-messages=name |
---|---|
System Variable | lc_messages |
Scope | Global, Session |
Dynamic | Yes |
Type | String |
Default Value | en_US |
The locale to use for error messages. The default is
en_US
. The server converts the argument to
a language name and combines it with the value of
lc_messages_dir
to produce
the location for the error message file. See
Section 10.12, “Setting the Error Message Language”.