我有一些代码来更新看起来像的数据库表
try { db.execute("BEGIN"); // Lots of DELETE and INSERT db.execute("COMMIT"); } catch (DBException&) { db.execute("ROLLBACK"); }
我想将事务逻辑包装在RAII类中,以便我可以写
{ DBTransaction trans(db); // Lots of DELETE and INSERT }
但是我该如何为它编写析构函数呢?
解决方法
使用以下:
transaction tr(db); ... tr.commit();
当tr.commit()完成时,它将状态设置为“commit done”,析构函数不执行任何操作,
否则就会回滚.
检查异常是个坏主意,请考虑:
transaction tr(db); ... if(something_wrong) return; // Not throw ... tr.commit();
在这种情况下,您可能期望相当回滚然后提交,但提交将完成.
编辑:但是如果你仍然想要它,请看看std :: uncaught_exception()但是请先阅读这个http://www.gotw.ca/gotw/047.htm