1、fetchone该方法获取下一个查询结果集。结果集是一个对象。
2、fetchall接收全部的返回结果行。
3、rowcount这是一个只读属性,并返回执行execute方法后影响的行数。
实例
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
|
from pymysql import * def main(): # 创建Connection连接 conn = connect(host = 'localhost' ,port = 3306 ,user = 'root' ,password = 'mysql' ,database = 'jing_dong' ,charset = 'utf8' ) # 获得Cursor对象 cs1 = conn.cursor() # 执行select语句,并返回受影响的行数:查询一条数据 count = cs1.execute( 'select id,name from goods where id>=4' ) # 打印受影响的行数 print ( "查询到%d条数据:" % count) for i in range (count): # 获取查询的结果 result = cs1.fetchone() # 打印查询的结果 print (result) # 元组 (1, '张三', 20, '男') # 获取查询的结果 # 关闭Cursor对象 cs1.close() conn.close() if __name__ = = '__main__' : main() |
实例扩展:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /usr/bin/python # filename conn.py import MySQLdb # 载入连接数据库模块 try : # 尝试连接数据库 conn = MySQLdb.connect( "localhost" , "root" , "www" , "yao" ,charset = "utf8" ) # 定义连接数据库的信息 except MySQLdb.OperationalError, message: # 连接失败提示 print "link error" cursor = conn.cursor() #定义连接对象 cursor.execute( "select * from user" ) #使用cursor提供的方法来执行查询语句 data = cursor.fetchall() #使用fetchall方法返回所有查询结果 print data #打印查询结果 cursor.close() #关闭cursor对象 conn.close() #关闭数据库链接 |
到此这篇关于python执行数据库的查询操作实例讲解的文章就介绍到这了,更多相关python如何执行数据库查询操作内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.py.cn/jishu/jichu/34065.html