修改MySQL的默認字符集是通過修改它的配置文件來實現的。一般分兩種情況:
Windows平台
Windows下的MySQL配置文件是my.ini,一般在c:Windowsmy.ini或者c:winntmy.ini可以直接在這個文件裡面加上
default-character-set=gbk #或gb2312,big5,utf8
然後重新啟動MySQL
service MySQL restart
或
/etc/init.d/MySQL restart
或用其他方法重新啟動,就生效了。
Unix平台
Linux下的MySQL配置文件是my.cnf,一般是/etc/my.cnf,如果找不到可以用find命令找一下:
find / -iname my.cnf
在這個文件裡面加上
default-character-set=gbk #或gb2312,big5,utf8
然後重新啟動MySQL
net stop MySQL
net start MySQL
就生效了。