python连接sql引用的第三方库_python连接sql server数据库实现增删改查

简述

python连接微软的sql server数据库用的第三方模块叫做pymssql(document:http://www.pymssql.org/en/stable/index.html)。在官方文档可以看到,pymssql是基于_mssql模块做的封装,是为了遵守python的DBAPI规范接口. 两者之间的关系如下图:

657a840c9d5752554e7fbcd31e069d0e.png

1.使用pymssql连接sql server数据库并实现数据库基本操作(官方api http://www.pymssql.org/en/stable/ref/pymssql.html )

1)基本语法

b8b85e89708f2bcbb42fb0e2c77f28ae.gif

import pymssql

server = "187.32.43.13" # 连接服务器地址

user = "root"         # 连接帐号

password = "1234"      # 连接密码

conn = pymssql.connect(server, user, password, "连接默认数据库名称") #获取连接

cursor = conn.cursor() # 获取光标

# 创建表

cursor.execute("""

IF OBJECT_ID('persons', 'U') IS NOT NULL

DROP TABLE persons

CREATE TABLE persons (

id INT NOT NULL,

name VARCHAR(100),

salesrep VARCHAR(100),

PRIMARY KEY(id)

)

""")

# 插入多行数据

cursor.executemany(

"INSERT INTO persons VALUES (%d, %s, %s)",

[(1, 'John Smith', 'John Doe'),

(2, 'Jane Doe', 'Joe Dog'),

(3, 'Mike T.', 'Sarah H.')])

# 你必须调用 commit() 来保持你数据的提交如果你没有将自动提交设置为true

conn.commit()

# 查询数据

cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')

# 遍历数据(存放到元组中) 方式1

row = cursor.fetchone()

while row:

print("ID=%d, Name=%s" % (row[0], row[1]))

row = cursor.fetchone()

# 遍历数据(存放到元组中) 方式2

for row in cursor:

print('row = %r' % (row,))

# 遍历数据(存放到字典中)

# cursor = conn.cursor(as_dict=True) # # cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe') # for row in cursor: # print("ID=%d, Name=%s" % (row['id'], row['name'])) # # conn.close()

# 关闭连接

conn.close()

# 注:在任何时候,在一个连接下,一次正在执行的数据库操作只会出现一个cursor对象

79609a566971e349d77a275b0ef57ebb.gif

2)同时,如果你可以使用另一种语法:with 来避免手动关闭cursors和connection连接

fb12770502d223435a651240a43d4cb0.gif

import pymssql

server = "187.32.43.13" # 连接服务器地址

user = "root"         # 连接帐号

password = "1234"      # 连接密码

with pymssql.connect(server, user, password, "你的连接默认数据库名称") as conn:

with conn.cursor(as_dict=True) as cursor: # 数据存放到字典中

cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')

for row in cursor:

print("ID=%d, Name=%s" % (row['id'], row['name']))

c4e58b0210fcc4033954b91abced04b8.gif

3)调用存储过程:

efc65ef061ee00a8212422cf77199fe2.gif

with pymssql.connect(server, user, password, "tempdb") as conn:

with conn.cursor(as_dict=True) as cursor:

cursor.execute("""

CREATE PROCEDURE FindPerson

@name VARCHAR(100)

AS BEGIN

SELECT * FROM persons WHERE name = @name

END

""")

cursor.callproc('FindPerson', ('Jane Doe',))

for row in cursor:

print("ID=%d, Name=%s" % (row['id'], row['name']))

a7d7ca871e58310cbc4fcf6798ff7e0a.gif

2.使用_mssql连接sql server数据库并实现操作(官方api  http://www.pymssql.org/en/stable/ref/_mssql.html)

1)基本语法:

3df4cf45dd60ddad2924261cee13036e.gif

import _mssql

# 创建连接

conn = _mssql.connect(server='SQL01', user='user', password='password', \

database='mydatabase')

print(conn.timeout)

print(conn.login_timeout)

# 创建table

conn.execute_non_query('CREATE TABLE persons(id INT, name VARCHAR(100))')

# insert数据

conn.execute_non_query("INSERT INTO persons VALUES(1, 'John Doe')")

conn.execute_non_query("INSERT INTO persons VALUES(2, 'Jane Doe')")

# 查询操作

conn.execute_query('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')

for row in conn:

print "ID=%d, Name=%s" % (row['id'], row['name'])

#查询数量count()

numemployees = conn.execute_scalar("SELECT COUNT(*) FROM employees")

# 查询一条数据

employeedata = conn.execute_row("SELECT * FROM employees WHERE id=%d", 13)

# 带参数查询的几个例子:

conn.execute_query('SELECT * FROM empl WHERE id=%d', 13)

conn.execute_query('SELECT * FROM empl WHERE name=%s', 'John Doe')

conn.execute_query('SELECT * FROM empl WHERE id IN (%s)', ((5, 6),))

conn.execute_query('SELECT * FROM empl WHERE name LIKE %s', 'J%')

conn.execute_query('SELECT * FROM empl WHERE name=%(name)s AND city=%(city)s', \

{ 'name': 'John Doe', 'city': 'Nowhere' } )

conn.execute_query('SELECT * FROM cust WHERE salesrep=%s AND id IN (%s)', \

('John Doe', (1, 2, 3)))

conn.execute_query('SELECT * FROM empl WHERE id IN (%s)', (tuple(xrange(4)),))

conn.execute_query('SELECT * FROM empl WHERE id IN (%s)', \

(tuple([3, 5, 7, 11]),))

#关闭连接

conn.close()

6d374aaba31570cfe9c9cfe7541608d9.gif

pymssql托管在Github上:https://github.com/pymssql

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值