import pymysql
#创建一个数据库连接对象
db = pymysql.connect(host="172.25.254.128",
port=3306,
user="huazi",
password="123456",
charset="utf8mb4")
#创建一个游标
cursor = db.cursor()
#选择操作的数据库
db.select_db("test")
#写一条sql语句
sql = "delete from user where username=%s"
name = ('xiaoge',)
#执行sql语句
cursor.execute(sql, name)
#提交
db.commit()
#关闭游标
cursor.close()
#关闭连接
db.close()
使用with语句
with会自动关闭游标
python复制代码
import pymysql
#创建一个数据库连接对象
db = pymysql.connect(host="172.25.254.128",
port=3306,
user="huazi",
password="123456",
charset="utf8mb4")
db.select_db("view")
try:
with db.cursor() as cursor: # cursor = db.cursor()
sql = "select * from student"
cursor.execute(sql)
data = cursor.fetchall()
for i in data:
print(i)
finally:
db.close()