Readme
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. This directory holds configuration files which allow MySQL to work with
  2. different character sets.  It contains:
  3. *.conf
  4.     Each conf file contains four tables which describe character types,
  5.     lower- and upper-case equivalencies and sorting orders for the
  6.     character values in the set.
  7. Index
  8.     The Index file lists all of the available charset configurations.
  9.     Each charset is paired with a number.  The number is stored
  10.     IN THE DATABASE TABLE FILES and must not be changed.  Always
  11.     add new character sets to the end of the list, so that the
  12.     numbers of the other character sets will not be changed.
  13. Compiled in or configuration file?
  14.     When should a character set be compiled in to MySQL's string library
  15.     (libmystrings), and when should it be placed in a configuration
  16.     file?
  17.     If the character set requires the strcoll functions or is a
  18.     multi-byte character set, it MUST be compiled in to the string
  19.     library.  If it does not require these functions, it should be
  20.     placed in a configuration file.
  21.     If the character set uses any one of the strcoll functions, it
  22.     must define all of them.  Likewise, if the set uses one of the
  23.     multi-byte functions, it must define them all.  See the manual for
  24.     more information on how to add a complex character set to MySQL.
  25. Syntax of configuration files
  26.     The syntax is very simple.  Comments start with a '#' character and
  27.     proceed to the end of the line.  Words are separated by arbitrary
  28.     amounts of whitespace.
  29.     For the character set configuration files, every word must be a
  30.     number in hexadecimal format.  The ctype array takes up the first
  31.     257 words; the to_lower, to_upper and sort_order arrays take up 256
  32.     words each after that.