python3中pymysql模块的事务操作

try:
    cursor.execute(sql_1)
    cursor.execute(sql_2)
    cursor.execute(sql_3)
except Exception as e:
    connect.rollback() # 事务回滚
    print('事务处理失败', e)
else:
    connect.commit() # 事务提交
    print('事务处理成功', cursor.rowcount)# 关闭连接
    cursor.close()
    connect.close()

原文地址:https://www.cnblogs.com/quzq/p/10898860.html