ManaPHP\Db::begin PHP 메소드

begin() 공개 메소드

Starts a transaction in the connection
public begin ( ) : void
리턴 void
    public function begin()
    {
        if ($this->_transactionLevel === 0) {
            $this->fireEvent('db:beginTransaction');
            if (!$this->_pdo->beginTransaction()) {
                throw new DbException('beginTransaction failed.');
            }
        }
        $this->_transactionLevel++;
    }