DboSource::_commitNested PHP Method

_commitNested() protected method

Commit a nested transaction
protected _commitNested ( ) : boolean
return boolean
    protected function _commitNested()
    {
        $query = 'RELEASE SAVEPOINT LEVEL' . $this->_transactionNesting--;
        if ($this->fullDebug) {
            $this->logQuery($query);
        }
        $this->_connection->exec($query);
        return true;
    }
DboSource