sqlsrv startTransaction
MDunkleSr opened this issue · 2 comments
MDunkleSr commented
/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');
elinw commented
@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.
elinw commented
Would you close this issue now? THhanks!