Zend_Db_Adapter_Pdo_Mssql::_beginTransaction PHP Method

_beginTransaction() protected method

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