DboSource::_rollbackNested PHP Method

_rollbackNested() protected method

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