Ejemplo n.º 1
0
 public function commit()
 {
     $this->da->commit();
     if ($this->da->isError() && $this->throw_exception_on_errors) {
         throw new DataAccessException($this->da->isError());
     }
 }