Heim >Datenbank >MySQL-Tutorial >python向mysql写下时出现中文乱码

python向mysql写下时出现中文乱码

WBOY
WBOYOriginal
2016-06-07 16:23:581195Durchsuche

python向mysql写入时出现中文乱码 http://down.chinaz.com/server/201111/1423_1.htm 1.先把数据库的配置全设置为utf8. mysql语句: show variables like '%char%'; 在显示结果中,哪些不是utf8的,全部通过命令: set variable_name = utf8; ?来设置为utf8格

python向mysql写入时出现中文乱码

http://down.chinaz.com/server/201111/1423_1.htm

1.先把数据库的配置全设置为utf8. mysql语句:

show variables like '%char%';

在显示结果中,哪些不是utf8的,全部通过命令:

set variable_name = utf8;

?来设置为utf8格式。

?

2.然后是在Python代码中修改连接语句:

    conn = MySQLdb.connect(host='localhost', user='root',passwd='123', db='account', charset='utf8')  # OK,如果没有charset='utf8',插入为乱码

?

3.个性python的首行

# -*- coding:utf8 -*-

?

如果从数据库中读取的中文输出到网页,如果没有任何内容显示,加入以下代码可解决:

import sys
reload(sys)
sys.setdefaultencoding('utf-8')

?

?

另外这偏文章对各编码也有帮助:

http://down.chinaz.com/server/201111/1423_1.htm

?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn