コード例 #1
0
 public function commit()
 {
     $this->assertFinished();
     $this->finished = true;
     if (!$this->savepointName) {
         $this->db->commit();
     } else {
         $this->db->savepointRelease($this->savepointName);
     }
 }
コード例 #2
0
ファイル: Cursor.php プロジェクト: avid/hesper
 protected function closeTransaction()
 {
     $this->db->commit();
 }