标签:style blog http ar color 使用 sp for strong
亲测OK!
#vim /etc/mysql/my.cnf
【mysqld】下面加入:
default-character-set=utf8
重启mysql
/etc/init.d/mysql restart 或者
/etc/init.d/mysql stop
/etc/init.d/mysql start
QT中main函数加入:
QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf8"));
QTextCodec::setCodecForTr(QTextCodec::codecForName("utf8"));
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("utf8"));
强烈建议使用utf8!!!!
utf8可以兼容世界上所有字符!!!
然后QT连接mysql就支持中文啦!
本文参考:http://www.pc6.com/infoview/Article_63586.html
http://blog.chinaunix.net/uid-14827902-id-2784504.html
标签:style blog http ar color 使用 sp for strong
原文地址:http://www.cnblogs.com/luoxiang/p/4160168.html