identifier quoting fix
This commit is contained in:
parent
707f801509
commit
c5eb26c3ba
1 changed files with 2 additions and 2 deletions
|
@ -461,7 +461,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = 'DELETE FROM '. $table . ' WHERE ' . implode(' AND ', $condition);
|
$query = 'DELETE FROM ' . $this->quoteIdentifier($table) . ' WHERE ' . implode(' AND ', $condition);
|
||||||
$affectedRows = $this->exec($query);
|
$affectedRows = $this->exec($query);
|
||||||
|
|
||||||
$this->insert($table, $values);
|
$this->insert($table, $values);
|
||||||
|
@ -486,7 +486,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
|
||||||
$cols = array_keys($values);
|
$cols = array_keys($values);
|
||||||
|
|
||||||
// build the statement
|
// build the statement
|
||||||
$query = "INSERT INTO $table "
|
$query = 'INSERT INTO ' . $this->quoteIdentifier($table)
|
||||||
. '(' . implode(', ', $cols) . ') '
|
. '(' . implode(', ', $cols) . ') '
|
||||||
. 'VALUES (' . substr(str_repeat('?, ', count($values)), 0, -2) . ')';
|
. 'VALUES (' . substr(str_repeat('?, ', count($values)), 0, -2) . ')';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue