Bug #24886 ยป 17399.diff
typo3/sysext/dbal/class.ux_t3lib_db.php (Arbeitskopie) | ||
---|---|---|
// Compiling query:
|
||
$compiledQuery = $this->SQLparser->compileSQL($this->lastParsedAndMappedQueryArray);
|
||
//if ($this->lastParsedAndMappedQueryArray['type'] == 'INSERT') {
|
||
// return mysql_query($compiledQuery, $this->link);
|
||
//}
|
||
return mysql_query($compiledQuery, $this->link);
|
||
if (in_array($this->lastParsedAndMappedQueryArray['type'], array('INSERT', 'DROPTABLE'))) {
|
||
return mysql_query($compiledQuery, $this->link);
|
||
}
|
||
return mysql_query($compiledQuery[0], $this->link);
|
||
break;
|
||
case 'adodb':
|
||
// Compiling query:
|