This forum is no longer active. Please post your questions to our new community site
How can I enable the utf-8 in mysql?
|
|
hello, dear all |
|
|
Hi, You can add that option in the /mysql/my.cnf. In the [mysqld] section add ’’character-set-server=UTF8"; in the [client] section add “default-character-set=UTF8”. You can find more information in these links: http://dev.mysql.com/doc/refman/5.1/en/charset-… http://dev.mysql.com/doc/refman/5.0/en/server-o…If you need to conver existing data, you can execute: ALTER TABLE tbl_name CONVERT TO CHARACTER SET charset_name; |

