Skip to content
Snippets Groups Projects
Commit 7d790b63 authored by Prasad's avatar Prasad
Browse files

Merge branch 'FIXSQL' into 'master'

Fix #1039

See The Issue for more details.

See merge request !327
parents aac2493d f40fbcbe
No related branches found
No related tags found
No related merge requests found
......@@ -1358,7 +1358,7 @@ if (!defined('_ADODB_LAYER')) {
* @return the last inserted ID. Not all databases support this.
*/
function Insert_ID($table='',$column='') {
if ($this->_logsql && $this->lastInsID) {
if ($this->_logsql || $this->lastInsID) {
return $this->lastInsID;
}
if ($this->hasInsertID) {
......
......@@ -195,6 +195,7 @@ class ADODB_mysqli extends ADOConnection {
if (!$ok) return $this->RollbackTrans();
if ($this->transCnt) $this->transCnt -= 1;
$this->lastInsID = $this->_insertid();
$this->Execute('COMMIT');
//$this->Execute('SET AUTOCOMMIT=1');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment