Edgewall Software

Changes between Version 4 and Version 5 of MySqlDb


Ignore:
Timestamp:
Jan 31, 2007, 11:28:04 AM (17 years ago)
Author:
Christian Boos
Comment:

Document the constraint of having to use the utf8 character set for MySQL databases

Legend:

Unmodified
Added
Removed
Modified
  • MySqlDb

    v4 v5  
    1111== Requirements ==
    1212=== MySQL ===
    13  ''to be completed from #3884''
     13
     14In order to avoid several issues related to the use of unicode characters throughout Trac, we '''''strongly''''' advise MySQL users to only use databases having the ''`utf8`'' character set and the ''`utf8_general_ci`'' collation type.
     15
     16Such databases can be created with the MySQL monitor, like that:
     17{{{
     18CREATE DATABASE trac DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
     19}}}
     20
     21See also #3884.
     22
    1423=== MySQLdb ===
    1524The recommended version for now is MySQL-python 1.2.1_p2.