今天嘗試着用 Python 寫了個腳本試着鏈接 mysql 數據庫,並查詢裏邊的數據,不過最終查詢結果中文字符變成了ascii格式。python
代碼以下:mysql
#!/usr/bin/python #encoding=utf-8 import MySQLdb import json db = MySQLdb.connect(host='xxx.xxx.xx.xxx',port=3306,user='name',passwd='pwd',db='my_database_name') cursor = db.cursor() sql = "select * from platform_temp" aa=cursor.execute(sql) info = cursor.fetchmany(aa) for i in info: print i db.close()
查詢結果以下:sql
針對上述出現的問題,對編輯器Pycharm的環境都進行了設置爲utf-8格式,可是結果還都如上圖所示。數據庫
最後經過查詢本地window控制檯字節碼格式,爲ascii,以下圖所示:json
In[5]: import sys In[6]: print(sys.getdefaultencoding()) ascii
再次對上述代碼進行修改,結果仍是如此,代碼以下:centos
#!/usr/bin/python #encoding=utf-8 import MySQLdb import json db = MySQLdb.connect(host='xxx.xxx.xxx.xxx',port=3306,user='name',passwd='pwd',db='my_database_name') cursor = db.cursor() sql = "select * from platform_temp" aa=cursor.execute(sql) info = cursor.fetchmany(aa) for i in info: print str(i).encode('utf-8') print str(i).decode('utf-8') print str(i).decode('utf-8').encode('utf-8') db.close()
最後經過嘗試將 json 模塊導入,利用其 dumps 方法,問題獲得解決,代碼以下圖所示:bash
#!/usr/bin/python #encoding=utf-8 import MySQLdb import json db = MySQLdb.connect(host='xxx.xxx.xxx.xxx',port=3306,user='name',passwd='pwd',db='my_database_name') cursor = db.cursor() sql = "select * from platform_temp" aa=cursor.execute(sql) info = cursor.fetchmany(aa) for i in info: # print str(i).encode('utf-8') # print str(i).decode('utf-8') # print str(i).decode('utf-8').encode('utf-8') print json.dumps(i, encoding='UTF-8', ensure_ascii=False)
查詢結果以下所示:編輯器
問題解決,結束。
fetch
實例配置:spa
def get_one(self): #準備sql sql = 'SELECT * FROM `news` WHERE `types` = %s ORDER BY `created_at` DESC;' # 找到cursor cursor = self.conn.cursor() cursor.execute('SET NAMES UTF8') # 執行sql cursor.execute(sql, ('百家', )) # 拿到結果 rest = cursor.fetchmany() for r in rest: print json.dumps(r, encoding='UTF-8', ensure_ascii=False) # 處理數據 cursor.close() self.close_conn()
[root@centos-01 python]# python test001.py [2, "男子長得像\"祁同偉\"捱打 打人者:爲什麼加害檢察官", "新聞內容", "百家", "/static/img/news/02.png", null, 0, null, 1]
python3 能夠用 pymysql 鏈接數據庫 , 沒有中文亂碼的問題