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

9pymysql使用方法

时间:2020-07-06 20:23:07      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:mys   char   bsp   insert   exec   charset   host   tab   cal   

1使用流程

1建立数据库连接(db=pymysql.connect(...))

2创建游标对象(cur=db.cursor())

3游标方法:cur.execute("insert...")

4提交到数据库或者获取数据:db.commit()/db.fetchall()

5关闭游标对象:cur.close()

6关闭数据库连接:db.close()

2cur方法

name = input(">>")
sql = "select name,score from cls where name=%s or score > %s;"
cur.execute(sql,[name,85]) #第二个位置只能放参量,参量指我们查询时的条件

cur.fetchone()
cur.fetchmany(10)
cur.fetchall
 

写操作

import pymysql

db = pymysql.connect(host=localhost,port=3306,user=root,password=159357,database=books,charset=utf8)
cur = db.cursor()
try:
    sql = "update book set price=33 where title=%s"
    cur.execute(sql,["边城"])
    db.commit()
except Exception as e:
    print(e)
    db.rollback()
cur.close()
db.close()

 

9pymysql使用方法

标签:mys   char   bsp   insert   exec   charset   host   tab   cal   

原文地址:https://www.cnblogs.com/gao-chao/p/13256366.html

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