mysql插入数据提示出错了,在my.ini里把编码改为gbk,还是不行解决方案
mysql插入数据提示出错了,在my.ini里把编码改为gbk,还是不行create table tb_superType(superTypeId int p
mysql插入数据提示出错了,在my.ini里把编码改为gbk,还是不行
create table tb_superType
(
superTypeId int primary key auto_increment,
typeName varchar(50)
);
insert into tb_superType values(null,'IT技术');
insert into tb_superType values(null,'文学');
insert into tb_superType values(null,'艺术');
[解决办法]
my.ini里要设置客户端的编码,也要设置服务器端的编码,都设置为UTF-8的吧,我就是这样干的
[解决办法]