vi /etc/my.cnf(# cp /usr/share/mysql/my-medium.cnf /etc/my.cnf 既已经把my-medium.cnf拷贝到/etc/下了)在[mysqld]下加入default-character-set = utf8,[client]下加入default-character-set = utf8
在创建数据表时将默认编码改为gb2312
如:mysql> create table name (id int(3) auto_increment not null primary key, xm char(8),xb char(2),csny date) DEFAULT CHARSET=gb2312;
这样在mysql里就可以显示中文了!
阅读(670) | 评论(0) | 转发(0) |