Advertisement
Guest User

Untitled

a guest
Jul 27th, 2010
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. class db{
  2.     //...
  3.     public function rollback(){
  4.         try{
  5.             if ($this->isTransactionActive()){
  6.                     $this->dbh->rollBack();
  7.             }
  8.         } catch (Exception $e) {//перестраховка
  9.             exceptionHandlerClass::exceptionLog($e);//статическая зависимость
  10.         }
  11.     }
  12.     //...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement