Fix logic.

This commit is contained in:
Relintai 2022-12-18 13:17:58 +01:00
parent 247676656f
commit e61c80db0c

View File

@ -213,9 +213,10 @@ QueryBuilder *SQLite3QueryBuilder::cset() {
return this; return this;
} }
QueryBuilder *SQLite3QueryBuilder::nsetp(const String &col, const String &param) { QueryBuilder *SQLite3QueryBuilder::nsetp(const String &col, const String &param) {
query_result += col + "='"; query_result += col;
query_result += col + param; query_result += "='";
query_result += col + "', "; query_result += param;
query_result += "', ";
return this; return this;
} }