|
 | | Links |
|
|
- Article: Unicode development with DbForms, MySQL 4.1, and friends
- Unicode support is available since MySQL 4.1
- At the end of the table definition add: ENGINE=InnoDB DEFAULT CHARSET=utf8;
- Must use --default-character-set=utf8 option with mysqldump for backup to retain Unicode data
- MySQL 5.0 Manual - Unicode
- To save space with UTF-8, use VARCHAR instead of CHAR. Otherwise, MySQL must reserve three bytes for each character in a CHAR
- Run: [set names "utf8"] before do anything
- Use this to connect to server: mysql --default-character-set=utf8 -uyour_username -p -h your_databasehost.your_domain.com your_database
- Convert database to Unicode
- Tested Result:
|
|