python sqlobject(mysql)中文亂碼解決方案

來源:互聯網
上載者:User

UnicodeEncodeError: 'latin-1' codec can't encode characters in position;
找了一天終於搞明白了,預設情況下,mysql串連的編碼是latin-1,你需要指定使用什麼編碼方式:
connectionForURI(mysql://user:password@localhost:3306/eflow?use_unicode=1&charset=utf8)

Python mysql 中文亂碼 的解決方案,有需要的朋友不妨看看。
 
先來看一段代碼:

複製代碼 代碼如下:import MySQLdb
  db_user = "tiger"
  db_pw = "tiger"
  db = MySQLdb.connect(host="localhost", user=db_user, passwd=db_pw ,db="finaltldw",charset="gb2312")
  c = db.cursor()
  c.execute("""select id, name from NODES""")
  i=0;
  for id, name in c.fetchall():
   print "%2d %s" % (id, name)
   i=i+1
   if i==100:
   break

返回結果:
  1 TOP
  2 教育
  3 機構
  4 人
  5 地區
  6 單位
  7 科學研究
  8 實驗室
  9 類型
    
  如果編碼是UTF-8
  轉載一個解決方案: 其中的use db
  
  Python操作MySQL以及中文亂碼的問題
  Python操作MySQL需要安裝Python-MySQL
  可以從網上搜尋一下,和一般的Python包一樣安裝
  
  安裝好之後,模組名字叫做MySQLdb ,在Window和Linux環境下都可以使用,實驗了一下挺好用,
  不過又發現了煩人的亂麻問題,最後用了幾個辦法,解決了!
  
  我用了下面幾個措施,保證MySQL的輸出沒有亂麻:
   1 Python檔案設定編碼 utf-8 (檔案前面加上 #encoding=utf-8)
   2 MySQL資料庫charset=utf-8
   3 Python串連MySQL是加上參數 charset=utf8
   4 設定Python的預設編碼為 utf-8 (sys.setdefaultencoding(utf-8)
  mysql_test.py 

複製代碼 代碼如下:#encoding=utf-8
  import sys
  import MySQLdb
  
  reload(sys)
  sys.setdefaultencoding('utf-8')
  
  db=MySQLdb.connect(user='root',charset='utf8')
  cur=db.cursor()
  cur.execute('use mydb')
  cur.execute('select * from mytb limit 100')
  
  f=file("/home/user/work/tem.txt",'w')
  
  for i in cur.fetchall():
   f.write(str(i))
   f.write(" ")
  
  f.close()
  cur.close()

上面是linux上的指令碼,windows下運行正常!
  
  註:MySQL的設定檔設定也必須配置成utf8
  
  設定 MySQL 的 my.cnf 檔案,在 [client]/[mysqld]部分都設定預設的字元集(通常在/etc/mysql/my.cnf):
  [client]
  default-character-set = utf8
  [mysqld]
  default-character-set = utf8

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.