码迷,mamicode.com
首页 > 数据库 > 详细

sae python中Mysql中文乱码的解决

时间:2014-06-18 11:39:24      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:sae   python   mysql   乱码   中文   

一开始我用的是:

db=MySQLdb.connect(db=sae.const.MYSQL_DB,user=sae.const.MYSQL_USER,passwd=sae.const.MYSQL_PASS,host=sae.const.MYSQL_HOST,port=int(sae.const.MYSQL_PORT))

数据库编码与python代码的编码都已设为utf8,在PHPMyAdmin中添加中文记录,在网页查询显示中却显示乱码,我在网上各种搜索都找不到解决方法。最后终于发现在连接数据库时添加charset参数为utf8就可以了。。

db=MySQLdb.connect(db=sae.const.MYSQL_DB,user=sae.const.MYSQL_USER,passwd=sae.const.MYSQL_PASS,host=sae.const.MYSQL_HOST,port=int(sae.const.MYSQL_PORT),charset='utf8')


sae python中Mysql中文乱码的解决,布布扣,bubuko.com

sae python中Mysql中文乱码的解决

标签:sae   python   mysql   乱码   中文   

原文地址:http://blog.csdn.net/tigerstudent/article/details/31393889

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!