码迷,mamicode.com
首页 > 数据库 > 详细

python(pymysql操作数据库)

时间:2018-12-13 17:44:34      阅读:183      评论:0      收藏:0      [点我收藏+]

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

第一种方式

import pymysql
# 打开数据库连接
db = pymysql.connect(host="192.168.88.11", user="root",
                     password="123", db="p1807", port=3306)
 
# 使用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   游标   

原文地址:https://www.cnblogs.com/heiguu/p/10115229.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!