Zend_Db_Adapter_Pdo_Mssql::_commit PHP Method

_commit() protected method

It is necessary to override the abstract PDO transaction functions here, as the PDO driver for MSSQL does not support transactions.
protected _commit ( )
    protected function _commit()
    {
        $this->_connect();
        $this->_connection->exec('COMMIT TRANSACTION');
        return true;
    }