DboSource::_beginNested PHP Method

_beginNested() protected method

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