pymssql的基本使用

fpkoko發表於2017-12-13

pymssql是訪問sql server資料庫的python庫. pymssql依賴於freetds.所以要先安裝freetds mac下可以使用homebrew來安裝 brew install freetds 然後使用pip來安裝pymssql. pip install pymssql 安裝完之後可以在python中import

訪問資料庫程式碼如下:

import pymssql
conn=pymssql.connect(host='資料庫伺服器地址',user='user',password='密碼',database='資料庫名稱',charset='utf8')
cur=conn.cursor()
cur.execute('select * from [tabName]')
resList=cur.fetchall()
conn.commit()
conn.close()
複製程式碼

resList就是我們查詢的資訊.當然能除了execute之外還有insert,update,remove等.

相關文章