ido_mysql: Don't put already escaped string into quotes

This commit is contained in:
Michael Friedrich 2013-08-01 19:43:51 +02:00
parent a4d8cfe2a5
commit 7e01b2bb47
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ void MysqlDbConnection::ExecuteQuery(const DbQuery& query)
if (!first)
qbuf << " AND ";
qbuf << key << " = '" << value << "'";
qbuf << key << " = " << value;
if (first)
first = false;