예제 #1
0
파일: PDO.php 프로젝트: sinasalek/pdoplus
 public function beginTransaction()
 {
     if (!$this->nestable() || $this->transLevel == 0) {
         parent::beginTransaction();
     } else {
         $this->exec("SAVEPOINT LEVEL{$this->transLevel}");
     }
     $this->transLevel++;
 }