Esempio n. 1
0
 public function rollBack()
 {
     $this->transLevel--;
     if (!$this->nestable() || $this->transLevel == 0) {
         parent::rollBack();
     } else {
         $this->exec("ROLLBACK TO SAVEPOINT LEVEL{$this->transLevel}");
     }
 }