本文主要是介绍【python 连接sqlserver】Python连接SQL Server数据库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、在python中安装pymssql
pip install pymssql
2、连接代码:
import pymssqlconn=pymssql.connect(host='127.0.0.1',user='user',password='password',database='MyDB')
cur=conn.cursor()
cur.execute('select * from table1')
#如果是插入、删除、更新语句切记要写提交命令con.commit()
print (cur.fetchall())
cur.close()
conn.close()
这篇关于【python 连接sqlserver】Python连接SQL Server数据库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!