📄 charset.sgml
字号:
<!-- $PostgreSQL: pgsql/doc/src/sgml/charset.sgml,v 2.75 2005/11/04 23:13:59 petere Exp $ --><chapter id="charset"> <title>Localization</> <para> This chapter describes the available localization features from the point of view of the administrator. <productname>PostgreSQL</productname> supports localization with two approaches: <itemizedlist> <listitem> <para> Using the locale features of the operating system to provide locale-specific collation order, number formatting, translated messages, and other aspects. </para> </listitem> <listitem> <para> Providing a number of different character sets defined in the <productname>PostgreSQL</productname> server, including multiple-byte character sets, to support storing text in all kinds of languages, and providing character set translation between client and server. </para> </listitem> </itemizedlist> </para> <sect1 id="locale"> <title>Locale Support</title> <indexterm zone="locale"><primary>locale</></> <para> <firstterm>Locale</> support refers to an application respecting cultural preferences regarding alphabets, sorting, number formatting, etc. <productname>PostgreSQL</> uses the standard ISO C and <acronym>POSIX</acronym> locale facilities provided by the server operating system. For additional information refer to the documentation of your system. </para> <sect2> <title>Overview</> <para> Locale support is automatically initialized when a database cluster is created using <command>initdb</command>. <command>initdb</command> will initialize the database cluster with the locale setting of its execution environment by default, so if your system is already set to use the locale that you want in your database cluster then there is nothing else you need to do. If you want to use a different locale (or you are not sure which locale your system is set to), you can instruct <command>initdb</command> exactly which locale to use by specifying the <option>--locale</option> option. For example:<screen>initdb --locale=sv_SE</screen> </para> <para> This example sets the locale to Swedish (<literal>sv</>) as spoken in Sweden (<literal>SE</>). Other possibilities might be <literal>en_US</> (U.S. English) and <literal>fr_CA</> (French Canadian). If more than one character set can be useful for a locale then the specifications look like this: <literal>cs_CZ.ISO8859-2</>. What locales are available under what names on your system depends on what was provided by the operating system vendor and what was installed. (On most systems, the command <literal>locale -a</> will provide a list of available locales.) </para> <para> Occasionally it is useful to mix rules from several locales, e.g., use English collation rules but Spanish messages. To support that, a set of locale subcategories exist that control only a certain aspect of the localization rules: <informaltable> <tgroup cols="2"> <tbody> <row> <entry><envar>LC_COLLATE</></> <entry>String sort order</> </row> <row> <entry><envar>LC_CTYPE</></> <entry>Character classification (What is a letter? Its upper-case equivalent?)</> </row> <row> <entry><envar>LC_MESSAGES</></> <entry>Language of messages</> </row> <row> <entry><envar>LC_MONETARY</></> <entry>Formatting of currency amounts</> </row> <row> <entry><envar>LC_NUMERIC</></> <entry>Formatting of numbers</> </row> <row> <entry><envar>LC_TIME</></> <entry>Formatting of dates and times</> </row> </tbody> </tgroup> </informaltable> The category names translate into names of <command>initdb</command> options to override the locale choice for a specific category. For instance, to set the locale to French Canadian, but use U.S. rules for formatting currency, use <literal>initdb --locale=fr_CA --lc-monetary=en_US</literal>. </para> <para> If you want the system to behave as if it had no locale support, use the special locale <literal>C</> or <literal>POSIX</>. </para> <para> The nature of some locale categories is that their value has to be fixed for the lifetime of a database cluster. That is, once <command>initdb</command> has run, you cannot change them anymore. <literal>LC_COLLATE</literal> and <literal>LC_CTYPE</literal> are those categories. They affect the sort order of indexes, so they must be kept fixed, or indexes on text columns will become corrupt. <productname>PostgreSQL</productname> enforces this by recording the values of <envar>LC_COLLATE</> and <envar>LC_CTYPE</> that are seen by <command>initdb</>. The server automatically adopts those two values when it is started. </para> <para> The other locale categories can be changed as desired whenever the server is running by setting the run-time configuration variables that have the same name as the locale categories (see <xref linkend="runtime-config-client-format"> for details). The defaults that are chosen by <command>initdb</command> are actually only written into the configuration file <filename>postgresql.conf</filename> to serve as defaults when the server is started. If you delete these assignments from <filename>postgresql.conf</filename> then the server will inherit the settings from its execution environment. </para> <para> Note that the locale behavior of the server is determined by the environment variables seen by the server, not by the environment of any client. Therefore, be careful to configure the correct locale settings before starting the server. A consequence of this is that if client and server are set up in different locales, messages may appear in different languages depending on where they originated. </para> <note> <para> When we speak of inheriting the locale from the execution environment, this means the following on most operating systems: For a given locale category, say the collation, the following environment variables are consulted in this order until one is found to be set: <envar>LC_ALL</envar>, <envar>LC_COLLATE</envar> (the variable corresponding to the respective category), <envar>LANG</envar>. If none of these environment variables are set then the locale defaults to <literal>C</literal>. </para> <para> Some message localization libraries also look at the environment variable <envar>LANGUAGE</envar> which overrides all other locale settings for the purpose of setting the language of messages. If in doubt, please refer to the documentation of your operating system, in particular the documentation about <application>gettext</>, for more information. </para> </note> <para> To enable messages to be translated to the user's preferred language, <acronym>NLS</acronym> must have been enabled at build time. This choice is independent of the other locale support. </para> </sect2> <sect2> <title>Behavior</> <para> The locale settings influence the following SQL features: <itemizedlist> <listitem> <para> Sort order in queries using <literal>ORDER BY</> on textual data <indexterm><primary>ORDER BY</><secondary>and locales</></indexterm> </para> </listitem> <listitem> <para> The ability to use indexes with <literal>LIKE</> clauses <indexterm><primary>LIKE</><secondary>and locales</></indexterm> </para> </listitem> <listitem> <para> The <function>upper</>, <function>lower</>, and <function>initcap</> functions <indexterm><primary>upper</><secondary>and locales</></indexterm> <indexterm><primary>lower</><secondary>and locales</></indexterm> </para> </listitem> <listitem> <para> The <function>to_char</> family of functions <indexterm><primary>to_char</><secondary>and locales</></indexterm> </para> </listitem> </itemizedlist> </para> <para> The drawback of using locales other than <literal>C</> or <literal>POSIX</> in <productname>PostgreSQL</> is its performance impact. It slows character handling and prevents ordinary indexes from being used by <literal>LIKE</>. For this reason use locales only if you actually need them. </para> <para> As a workaround to allow <productname>PostgreSQL</> to use indexes with <literal>LIKE</> clauses under a non-C locale, several custom operator classes exist. These allow the creation of an index that performs a strict character-by-character comparison, ignoring locale comparison rules. Refer to <xref linkend="indexes-opclass"> for more information. </para> </sect2> <sect2> <title>Problems</> <para> If locale support doesn't work in spite of the explanation above, check that the locale support in your operating system is correctly configured. To check what locales are installed on your system, you may use the command <literal>locale -a</literal> if your operating system provides it. </para> <para> Check that <productname>PostgreSQL</> is actually using the locale that you think it is. <envar>LC_COLLATE</> and <envar>LC_CTYPE</> settings are determined at <command>initdb</> time and cannot be changed without repeating <command>initdb</>. Other locale settings including <envar>LC_MESSAGES</> and <envar>LC_MONETARY</> are initially determined by the environment the server is started in, but can be changed on-the-fly. You can check the active locale settings using the <command>SHOW</> command. </para> <para> The directory <filename>src/test/locale</> in the source distribution contains a test suite for <productname>PostgreSQL</>'s locale support. </para> <para> Client applications that handle server-side errors by parsing the text of the error message will obviously have problems when the server's messages are in a different language. Authors of such applications are advised to make use of the error code scheme instead. </para> <para> Maintaining catalogs of message translations requires the on-going efforts of many volunteers that want to see <productname>PostgreSQL</> speak their preferred language well. If messages in your language are currently not available or not fully translated, your assistance would be appreciated. If you want to help, refer to <xref linkend="nls"> or write to the developers' mailing list. </para> </sect2> </sect1> <sect1 id="multibyte"> <title>Character Set Support</title> <indexterm zone="multibyte"><primary>character set</></> <para> The character set support in <productname>PostgreSQL</productname> allows you to store text in a variety of character sets, including single-byte character sets such as the ISO 8859 series and multiple-byte character sets such as <acronym>EUC</> (Extended Unix Code), UTF-8, and Mule internal code. All character sets can be used transparently throughout the server. (If you use extension functions from other sources, it depends on whether they wrote their code correctly.) The default character set is selected while initializing your <productname>PostgreSQL</productname> database cluster using <command>initdb</>. It can be overridden when you create a database using <command>createdb</command> or by using the SQL command <command>CREATE DATABASE</>. So you can have multiple databases each with a different character set. </para> <sect2 id="multibyte-charset-supported"> <title>Supported Character Sets</title> <para> <xref linkend="charset-table"> shows the character sets available for use in the server. </para> <table id="charset-table"> <title>Server Character Sets</title> <tgroup cols="2"> <thead> <row> <entry>Name</entry> <entry>Description</entry> <entry>Language</entry> <!-- The Bytes/Char field is populated by looking at the values returned by pg_wchar_table.mblen function for each encoding. --> <entry>Bytes/Char</entry> <entry>Aliases</entry> </row> </thead> <tbody> <row> <entry><literal>BIG5</literal></entry> <entry>Big Five</entry> <entry>Traditional Chinese</entry> <entry>1-2</entry> <entry><literal>WIN950</>, <literal>Windows950</></entry> </row> <row> <entry><literal>EUC_CN</literal></entry> <entry>Extended UNIX Code-CN</entry> <entry>Simplified Chinese</entry> <entry>1-3</entry> <entry></entry> </row> <row> <entry><literal>EUC_JP</literal></entry> <entry>Extended UNIX Code-JP</entry> <entry>Japanese</entry> <entry>1-3</entry> <entry></entry> </row> <row> <entry><literal>EUC_KR</literal></entry> <entry>Extended UNIX Code-KR</entry> <entry>Korean</entry> <entry>1-3</entry> <entry></entry> </row> <row> <entry><literal>EUC_TW</literal></entry> <entry>Extended UNIX Code-TW</entry> <entry>Traditional Chinese, Taiwanese</entry> <entry>1-3</entry> <entry></entry> </row> <row> <entry><literal>GB18030</literal></entry> <entry>National Standard</entry> <entry>Chinese</entry> <entry>1-2</entry> <entry></entry> </row> <row> <entry><literal>GBK</literal></entry> <entry>Extended National Standard</entry> <entry>Simplified Chinese</entry> <entry>1-2</entry> <entry><literal>WIN936</>, <literal>Windows936</></entry>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -