Python操作SQLServer樣本

來源:互聯網
上載者:User

標籤:

本文主要是Python操作SQLServer樣本,包括執行查詢及更新操作(寫入中文)。

需要注意的是:讀取資料的時候需要decode(‘utf-8‘),寫資料的時候需要encode(‘utf-8‘),這樣就可以避免煩人的中文亂碼或報錯問題。

Python操作SQLServer需要使用pymssql模組,使用pip install pymssql安裝即可。

此外代碼中使用的封裝MSSQL類是從網上搜尋到的,直接用即可。

# -*- coding:utf-8 -*-import pymssqlclass MSSQL:    def __init__(self,host,user,pwd,db):        self.host = host        self.user = user        self.pwd = pwd        self.db = db    def __GetConnect(self):        if not self.db:            raise(NameError,"沒有設定資料庫資訊")        self.conn = pymssql.connect(host=self.host,user=self.user,password=self.pwd,database=self.db,charset="utf8")        cur = self.conn.cursor()        if not cur:            raise(NameError,"串連資料庫失敗")        else:            return cur    def ExecQuery(self,sql):        cur = self.__GetConnect()        cur.execute(sql)        resList = cur.fetchall()        #查詢完畢後必須關閉串連        self.conn.close()        return resList    def ExecNonQuery(self,sql):        cur = self.__GetConnect()        cur.execute(sql)        self.conn.commit()        self.conn.close()ms = MSSQL(host="192.168.1.1",user="sa",pwd="sa",db="testdb")reslist = ms.ExecQuery("select * from webuser")for i in reslist:    print inewsql="update webuser set name=‘%s‘ where id=1"%u‘測試‘print newsqlms.ExecNonQuery(newsql.encode(‘utf-8‘))

 

Python操作SQLServer樣本

聯繫我們

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