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()

posted @ 2019-05-21 11:37  叶落kiss  阅读(5241)  评论(0编辑  收藏  举报