当前位置:Gxlcms > 数据库问题 > python(pymysql操作数据库)

python(pymysql操作数据库)

时间:2021-07-01 10:21:17 帮助过:19人阅读

# 使用cursor()方法获取操作游标 cur = db.cursor()   # 1.查询操作 # 编写sql 查询语句  user 对应我的表名 sql = "select * from students" try:     cur.execute(sql)  # 执行sql语句       results = cur.fetchall()  # 获取查询的所有记录     for i in results:#遍历结果         print(i) except Exception as e:     raise e finally:     db.close()  # 关闭连接    

第二种方式

# 打开数据库连接 db = pymysql.connect(host="192.168.88.11", user="root",                      password="123", db="aaa", port=3306) cur = db.cursor()   try:     for i in range(1000):         cur.execute("insert into qqq values (‘ccc-%s‘)‘` %i)           results = cur.fetchall()    # 获取查询的所有记录 db.commit() #提交 except Exception as e:     raise e finally:     db.close()  # 关闭连接  

python(pymysql操作数据库)

标签:for   ISE   student   nal   查询   result   value   mys   游标   

人气教程排行