标签:游标 mongo 基本 数据库 imp pass mys mit response
import pymysql
db_config = {
'host': 'ip',
'port': 3306,
'user': '账号',
'password': '密码',
'db': '数据库名',
'charset': 'utf8'
}
# 建立连接对象
conn = pymysql.connect(**db_config)
# 连接是不能操作数据库的,需要生成游标来操作
# 创建cursor
cur = conn.cursor()
sql = 'select * from table'
# 执行SQL语句,SQL语句都是通过这个方法执行
cur.execute(sql)
# 获取结果
# 取出所有
# print(cur.fetchall())
# 取出一条
# print(cur.fetchone())
# 取出具体几条
print(cur.fetchmany(2))
标签:游标 mongo 基本 数据库 imp pass mys mit response
原文地址:https://www.cnblogs.com/jiyu-hlzy/p/11954135.html