pymssql 中文亂碼問題

來源:互聯網
上載者:User

作業系統:windows

開發環境:python 2.5 + pymssql 1.0.1

資料庫:Sql Server 2005 中文

     Python 使用一段時間了, 最頭疼的還是中文編碼問題。今天用 pymssql 寫一些資料到 Sql Server 資料庫裡面時出現了問題。

# -*- coding: UTF-8 -*-

import pymssql

conn = pymssql.connect(host='192.168.10.167', user='sa', password='sa', database='Test')

cur = conn.cursor()

cmd = "INSERT INTO Demo VALUES('索引測試')";

cmd = cmd.decode('utf-8')

print cmd

cur.execute(cmd)

conn.commit()

conn.close()

  

  print 顯示都是正確的, 但是 execute 報錯

 >>>

INSERT INTO Demo VALUES('索引測試')

 Traceback (most recent call last):
  File "E:\Workshop\python\overlay\test.py", line 15, in <module>
    cur.execute(cmd)
  File "C:\Python25\lib\site-packages\pymssql.py", line 185, in execute
    self._source.execute_query(operation, params)
SystemError: \loewis\25\python\Objects\stringobject.c:4465: bad argument to internal function

 但是去掉 cmd = cmd.decode('utf-8') 後寫入資料又是亂碼 "緔㈠紩嫻嬭瘯"

 

調試了一下午,將

# -*- coding: utf-8 -*-

改為

# -*- coding: cp936 -*-

# -*- coding: gb2312 -*-

查詢和更新都正常了,但是項目不是 utf-8 的了。

# -*- coding: cp936 -*-

import pymssql

conn = pymssql.connect(host='192.168.10.167', user='sa', password='sa', database='Test')

cur = conn.cursor()

cmd = "INSERT INTO Demo VALUES('索引測試')";

print cmd

cur.execute(cmd)

conn.commit()

conn.close()

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.