DboSource::_commitNested PHP Метод

_commitNested() защищенный Метод

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