mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-24 10:07:17 +01:00
Fix logic.
This commit is contained in:
parent
247676656f
commit
e61c80db0c
@ -213,9 +213,10 @@ QueryBuilder *SQLite3QueryBuilder::cset() {
|
||||
return this;
|
||||
}
|
||||
QueryBuilder *SQLite3QueryBuilder::nsetp(const String &col, const String ¶m) {
|
||||
query_result += col + "='";
|
||||
query_result += col + param;
|
||||
query_result += col + "', ";
|
||||
query_result += col;
|
||||
query_result += "='";
|
||||
query_result += param;
|
||||
query_result += "', ";
|
||||
|
||||
return this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user