Advertisement
freddy0512

transaction

Apr 13th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $this->db->trans_begin();
  2.  
  3. $this->db->query('AN SQL QUERY...');
  4. $this->db->query('ANOTHER QUERY...');
  5. $this->db->query('AND YET ANOTHER QUERY...');
  6.  
  7. if ($this->db->trans_status() === FALSE)
  8. {
  9. $this->db->trans_rollback();
  10. }
  11. else
  12. {
  13. $this->db->trans_commit();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement