我是靠谱客的博主 无私流沙,最近开发中收集的这篇文章主要介绍python调用sql数据库_python操作sql server数据库,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1)数据修改和删除也是跟上面的操作一样,把SQL语句传递给execute函数。但是我们常常想知道数据修改和删除时,到底影响了多少条记录,这个时候你可以使用cursor.rowcount的返回值。

cursor.execute("delete from products where id <> ?",‘pyodbc‘)

printcursor.rowcount,‘products deleted‘

cnxn.commit()

2)由于execute函数总是返回cursor,所以有时候你也可以看到像这样的语句:(注意rowcount放在最后面)

deleted=cursor.execute("delete from products where id <> ‘pyodbc‘").rowcount

cnxn.commit()

同样要注意调用cnxn.commit()函数

import pyodbc

#封装的一个简单的demo

class MsSql:

def __init__(self,driver,server,user,pwd,db):

self.driver=driver

self.server=server

self.user=user

self.pwd=pwd

self.db=db

def __get_connect(self):

if not self.db:

raise (NameError,"没有设置数据库信息")

self.conn=pyodbc.connect(driver=self.driver,server=self.server,user=self.user,password=self.pwd,database=self.db)#连接数据库

cursor=self.conn.cursor()#使用cursor()方法创建游标对象

if not cursor:

raise (NameError,"连接数据库失败")

else:

return cursor

def exec_query(self,sql):

‘‘‘执行查询语句‘‘‘

cursor=self.__get_connect()

cursor.execute(sql)

res_list=cursor.fetchall()#使用fetchall()获取全部数据

self.conn.close()#查询完毕关闭连接

return res_list

def exec_not_query(self,sql):

‘‘‘执行非查询语句‘‘‘

cursor=self.__get_connect()

cursor.execute(sql)

self.conn.commit()

self.conn.close()

if __name__ == ‘__main__‘:

ms=MsSql(driver="ODBC Driver 13 for SQL Server",server="localhost",user="sa",pwd="fooww123,",db="testdb")

result=ms.exec_query("select id,name from webuser")

for i in result:

print(i)

newsql = "update webuser set name=‘%s‘ where id=1" % u‘aa‘

# print(newsql)

ms.exec_not_query(newsql)

最后

以上就是无私流沙为你收集整理的python调用sql数据库_python操作sql server数据库的全部内容,希望文章能够帮你解决python调用sql数据库_python操作sql server数据库所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部