标签:数据 http wan sel 连接mysql rar 连接 取数据 关闭数据库
连接数据库→创建游标→执行SQL→fetch获得数据,进行业务处理→关闭游标→commit→关闭数据库连接
conn = pymysql.connect(host=host, user=user, passwd=password, db=db)
cur = conn.cursor()
cur.execute("INSERT INTO table VALUE something") cur.execute("SELECT * FROM table")
data = cur.fetchone() data = cur.fetchmany() data = cur.fetchall() # data是个生成器
cur.close()
conn.commit()
conn.close()
标签:数据 http wan sel 连接mysql rar 连接 取数据 关闭数据库
原文地址:https://www.cnblogs.com/x2x3/p/10907851.html