problem with mysql database character set

If you need in format in utf8 in your DA server, just add the link as below in my.cnf config file:

[mysqld]
local-infile=0
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
default-character-set = utf8
character-set-server = utf8
collation-server = utf8_unicode_ci

By the way, remember to backup the old config file first.
 
Back
Top