Difference between revisions of "Database Tips"
(→UTF-8 Support) |
(→UTF-8 Support) |
||
Line 24: | Line 24: | ||
<pre> | <pre> | ||
character-set="utf8" | character-set="utf8" | ||
− | collate="utf8_general_ci" | + | collate="utf8_general_ci" |
</pre> | </pre> | ||
Note that it is not clear that my SQL supports case sensitive UTF-8 coalition at this point, although you may be able to [[http://forums.mysql.com/read.php?103,156527,198794#msg-198794 use UTF-8 binary collation]]. | Note that it is not clear that my SQL supports case sensitive UTF-8 coalition at this point, although you may be able to [[http://forums.mysql.com/read.php?103,156527,198794#msg-198794 use UTF-8 binary collation]]. |
Revision as of 23:14, 13 March 2008
Database Tips and Tricks
MySQL
Table Name Case Sensitivity
If you use Linux or Unix for your MySQL server, the table names may be case sensitive, so PRODUCT and product are not the same table. You can turn this off by configuring mysqld on startup to ignore table names with the lower-case-table-names flag, such as this example from /etc/init.d/mysql:
$bindir/mysqld_safe --datadir=$datadir --lower-case-table-names=1 --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &
See MySQL manual on identifier case sentivity
UTF-8 Support
By default, MySQL supports the Latin1 character set, which is intended for European languages such as English. If you wish to use MySQL for other language types, you may need to set up a database or UTF-8 character set encoding. To do this, you would need to create your database using UTF-8 first:
mysql> create database opentaps default character set utf8 collate utf8_general_ci;
Then you would need to set your framework/entity/config/entityengine.xml file for the MySQL database to use the UTF-8 character set:
character-set="utf8" collate="utf8_general_ci"
Note that it is not clear that my SQL supports case sensitive UTF-8 coalition at this point, although you may be able to [use UTF-8 binary collation].