createSavepoint() 공개 메소드

Creates a new savepoint.
public createSavepoint ( string $savepoint ) : void
$savepoint string The name of the savepoint to create.
리턴 void
예제 #1
0
 protected function performCommit($identifier = NULL)
 {
     if ($identifier === NULL) {
         return $this->conn->commit();
     }
     $this->conn->createSavepoint($identifier);
 }
 /**
  * {@inheritDoc}
  */
 public function createSavepoint($savepoint)
 {
     $this->connect('master');
     return parent::createSavepoint($savepoint);
 }