python鏈接mysql中文數據編碼

系統是win7 x64python

Python 2.7.6的site.py裏面編碼設定爲 utf-8mysql

py文件首行指定 #coding:utf-8sql

MySQL 5.5.38安裝時指定代碼爲utf-8數據庫

 

peewee的鏈接數據庫代碼爲:編碼

 

[python]  view plain  copy
 
  1. db = MySQLDatabase(host = '127.0.0.1', user = 'root', passwd = '1', database = 'mz', charset = 'utf-8')  


不指定charset,會提示:插入的字符串不正確。spa

 

 

可是指定後,會提示以下錯:.net

super(Connection, self).set_character_set(charset)
peewee.OperationalError: (2019, "Can't initialize character set utf-8 (path: C:\
\mysql\\\\share\\charsets\\)")blog

 

偶爾搜到文章,他是亂碼。ip

試了一下,把utf-8改爲utf8,結果就正常了。utf-8

 

在mysql的表看了一下,果真是:

 

在Win下,phton2.x 確實是編碼麻煩。 

相關文章
相關標籤/搜索