>  기사  >  데이터 베이스  >  Python连接Mysql&&解决数据库汉字显示_MySQL

Python连接Mysql&&解决数据库汉字显示_MySQL

WBOY
WBOY원래의
2016-06-01 13:06:092042검색

python

# -*- coding:utf-8 -*-import MySQLdb#连接db = MySQLdb.connect(host="192.168.0.1", user="root", passwd='password',                      db="db_name", charset = "utf8")cursor = db.cursor()#执行cursor.execute("SELECT * FROM users")users = cursor.fetchall()#输出for user in users:     print user[0], user[1], user[2]
在connect中添加charset='utf8'可以解决在查询数据库中出现的汉字显示为乱码或者'???'的情况。
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.