详细文档见官方;
安装
1 | pip install pymysql |
使用
执行 Mysql 语句
1 | -*- coding: UTF-8 -*- |
获取查询数据
1 | # -*- coding: UTF-8 -*- |
操作都是靠游标,在
fetch
数据时按照顺序进行,可以使用cursor.scroll(num,mode)
来移动游标位置,如:1
2cursor.scroll(1, mode='relative') # 相对当前位置移动
cursor.scroll(2, mode='absolute') # 相对绝对位置移动默认获取的数据是元祖类型,如果想要字典类型的数据
1
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
获取新创建数据自增 ID
1 | # -*- coding: UTF-8 -*- |
使用 with 简化连接过程
1 | # -*- coding: UTF-8 -*- |