python操作SqlServer
Posted 日新其德止于至善
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python操作SqlServer相关的知识,希望对你有一定的参考价值。
python操作sqlserver需要使用pymssql模块
import pymssql class Mysql(): def __init__(self,host,user,pwd,db): self.host = host self.user = user self.pwd = pwd self.db = db def connectDB(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): ‘‘‘ 查询数据库 :param sql: :return: ‘‘‘ cur = self.connectDB() cur.execute(sql) res = cur.fetchall() self.conn.close() return res def ExecNonQuery(self,sql): ‘‘‘ 非查询操作 :param sql: :return: ‘‘‘ cur = self.connectDB() cur.execute(sql) self.conn.commit() self.conn.close() ms = Mysql(host="127.0.0.1",user="lary",pwd="lary123",db="testdb") res = ms.ExecQuery("select * from users") for i in res: print(i) sql="update users set name=‘%s‘ where id=1"%u‘测试‘ print(sql) ms.ExecNonQuery(sql.encode(‘utf-8‘))
以上是关于python操作SqlServer的主要内容,如果未能解决你的问题,请参考以下文章
使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段