Unverified Commit 1f451924 authored by Alexander Butenko's avatar Alexander Butenko Committed by GitHub

fixes (#698)

* fixed limit variable ordering in the comments

* Expand readme on autoreconnect and multipe connections usage

* update release numbers

* update copyright years

* Bug #623:  Mistake in Regexp

* Fix for #554 Fixing Join usage with 'USING' instead of 'ON'

* Fix empty exception message

* fix a typo

* Added LIKE case description into readme

* do not reset connection name when transtation is on

* 2.9 release
parent 39d06d95
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* @copyright Copyright (c) 2010-2017 * @copyright Copyright (c) 2010-2017
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License * @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
* @link http://github.com/joshcam/PHP-MySQLi-Database-Class * @link http://github.com/joshcam/PHP-MySQLi-Database-Class
* @version 2.9-master * @version 2.9
*/ */
class MysqliDb class MysqliDb
...@@ -416,7 +416,9 @@ class MysqliDb ...@@ -416,7 +416,9 @@ class MysqliDb
$this->_lastInsertId = null; $this->_lastInsertId = null;
$this->_updateColumns = null; $this->_updateColumns = null;
$this->_mapKey = null; $this->_mapKey = null;
$this->defConnectionName = 'default'; if(!$this->_transaction_in_progress ) {
$this->defConnectionName = 'default';
}
$this->autoReconnectCount = 0; $this->autoReconnectCount = 0;
return $this; return $this;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment