We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e5d76 commit 260c78fCopy full SHA for 260c78f
1 file changed
MysqliDb.php
@@ -396,7 +396,7 @@ public function insert($tableName, $insertData)
396
if ($this->isSubQuery)
397
return;
398
399
- $this->_query = "INSERT INTO " .self::$prefix . $tableName;
+ $this->_query = "INSERT " . implode(' ', $this->_queryOptions) ." INTO " .self::$prefix . $tableName;
400
$stmt = $this->_buildQuery(null, $insertData);
401
$stmt->execute();
402
$this->_stmtError = $stmt->error;
0 commit comments