Guest User

Untitled

a guest
Oct 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. void do_stuff_in_database()
  2. {
  3. with_transaction([&](DatabaseTransaction& tx) {
  4. bool success = data_manipulation_on(tx);
  5. if (success)
  6. tx.commit();
  7. });
  8. }
Add Comment
Please, Sign In to add comment