-
Notifications
You must be signed in to change notification settings - Fork 0
/
db_query_cursors.py
56 lines (43 loc) · 1.41 KB
/
db_query_cursors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python3
# encoding: utf-8
# @author: hoojo
# @email: hoojo_@126.com
# @github: https://github.com/hooj0
# @create date: 2018-04-15 15:17:26
# @copyright by hoojo@2018
# @changelog Added python3 `db -> query cursors` example
'''
Python查询Mysql使用 fetchone() 方法获取单条数据, 使用fetchall() 方法获取多条数据。
fetchone(): 该方法获取下一个查询结果集。结果集是一个对象
fetchall(): 接收全部的返回结果行.
rowcount: 这是一个只读属性,并返回执行execute()方法后影响的行数。
'''
import pymysql
# 打开数据库连接
db = pymysql.connect(host="localhost", user="root", password="root", db="test", port=3306, charset='utf8')
# 使用 cursor() 方法创建一个游标对象 cursor
# 游标设置为字典类型
cursor = db.cursor(cursor=pymysql.cursors.DictCursor)
sql = '''
select FIRST_NAME, LAST_NAME, AGE, SEX, INCOME from EMPLOYEE
'''
try:
# 执行查询语句
cursor.execute(sql)
# 获取第一条记录
row = cursor.fetchone()
print('row: ', row)
# 下一条记录
row = cursor.fetchone()
print('row: ', row)
# 下2条记录
rows = cursor.fetchmany(2)
print('rows: ', rows)
# 其他记录
result = cursor.fetchall()
for row in result:
print(row.values())
except OSError as e:
print('error: %s' % e)
# 关闭数据库连接
db.close()