博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
peewee 事物 回滚
阅读量:5224 次
发布时间:2019-06-14

本文共 1468 字,大约阅读时间需要 4 分钟。

peewee 事物 回滚

#!/usr/bin/env python# coding=utf-8from peewee import *db = MySQLDatabase(host='123.57.229.66', user='root', passwd='password', database='czj', charset='utf8')class tb_users(Model):    id = PrimaryKeyField()  # 主键    mobile = CharField(unique=True, max_length=64, null=False)  # 注册手机号/openid    password = CharField(max_length=32)  # 密码    truename = CharField(max_length=32)  # 真实姓名/nickname    class Meta:        database = db# 一def one():    try:        with db.atomic():            tb_users.create(mobile='120', password='120', truename='120')            raise 'haha'        print 'Success'    except IntegrityError:        print 'Failure: %s is already in use.' % username# 二@db.atomic()def create_user():    tb_users.create(mobile='120', password='120', truename='120')    raise 'haha'def two():    create_user()# 三def three():    db.set_autocommit(False)    db.begin()    try:        tb_users.create(mobile='120', password='120', truename='120')        raise 'haha'    except:        db.rollback()        raise    else:        try:            db.commit()        except:            db.rollback()            raise    finally:        db.set_autocommit(True)# 四def four():    db.set_autocommit(False)    db.begin()    tb_users.create(mobile='120', password='120', truename='120')    db.rollback()    db.commit()    db.set_autocommit(True)

实例1,2是使用 peewee封装的db.atomic()原子性,3,4是利用关闭自动提交和手动回滚来保证事物的原子性;

 

转载于:https://www.cnblogs.com/aaron-agu/p/7645723.html

你可能感兴趣的文章
javaScript数组去重方法汇总
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>
例1-1
查看>>
马达调速器,直流马达调速器,直流调速器
查看>>
前端编码规范小记
查看>>
C#编程(二十五)----------接口
查看>>
c如何弹出保存路径/保存文件对话框
查看>>
HTML标签二
查看>>
Python 3语法小记(九) 异常 Exception
查看>>
使用shared memory 计算矩阵乘法 (其实并没有加速多少)
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>