What precautions must be taken to use Chinese characters as MySQL table names?
Thanks in advance,
John
|
What precautions must be taken to use Chinese characters as MySQL table names? Thanks in advance, John |
|||
|
SQL supports delimited identifiers to allow table or column names to contain SQL keywords, whitespace, punctuation, other special characters, or international characters. In MySQL, use back-quotes (or set the Example:
|
|||
|
|
|
Although you can probably do it safely within MySQL, whether it's right or wrong the reality is that you may end up having a hard time finding support for table names with unicode characters when using third party tools. That might include back-up solutions, development languages and APIs, etc. While it's nice to try to be global thinking, in this case I would probably stick with "standard" table names. |
|||
|
|
|
You just need to be sure to properly escape table name anywhere using backqoutes. Besides this, it should be pretty safe to use any characters. PS: And whenever non Chinese writing person will have to modify your code he will hate you for that. |
|||||||||
|
SELECT * FROM 音信 WHERE 称号 = '鸭'.. how's that >_____< – Lukman Dec 15 '09 at 13:47