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