9pymysql使用方法

Posted 知否知否,

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9pymysql使用方法相关的知识,希望对你有一定的参考价值。

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使用方法的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段10—— 数组的响应式方法

微信小程序代码片段

webstorm代码片段的创建

Android课程---Android Studio使用小技巧:提取方法代码片段

创建自己的代码片段(CodeSnippet)

VIM 代码片段插件 ultisnips 使用教程