joomla/joomla-platform

sqlsrv startTransaction

MDunkleSr opened this issue · 2 comments

/libraries/joomla/database/database/sqlsrv.php line 891 has incorrect syntax for MS SQL transaction.

JDatabaseSQLSrv->transactionStart current:
$this->setQuery('START TRANSACTION');

should be:
$this->setQuery('BEGIN TRANSACTION');

@MDunkleSr You can just browse to the file, edit it and send the change as a pull request. Include #1649 in the comment so there is a link back to this.

Would you close this issue now? THhanks!