Fix typo.

This commit is contained in:
Relintai 2024-04-27 21:00:28 +02:00
parent 2cb6e3d97f
commit e752ededc5

View File

@ -365,25 +365,25 @@ QueryBuilder *SQLite3QueryBuilder::wpb(const String &col, const bool param) {
} }
QueryBuilder *SQLite3QueryBuilder::wph(const String &col) { QueryBuilder *SQLite3QueryBuilder::wph(const String &col) {
query_result += col; query_result += col;
query_result += "='"; query_result += "=";
psph(); psph();
query_result += "' "; query_result += " ";
return this; return this;
} }
QueryBuilder *SQLite3QueryBuilder::wphi(const String &col, const String &p_id) { QueryBuilder *SQLite3QueryBuilder::wphi(const String &col, const String &p_id) {
query_result += col; query_result += col;
query_result += "='"; query_result += "=";
psphi(p_id); psphi(p_id);
query_result += "' "; query_result += " ";
return this; return this;
} }
QueryBuilder *SQLite3QueryBuilder::wphr(const String &col, const String &p_raw_id) { QueryBuilder *SQLite3QueryBuilder::wphr(const String &col, const String &p_raw_id) {
query_result += col; query_result += col;
query_result += "='"; query_result += "=";
psphr(p_raw_id); psphr(p_raw_id);
query_result += "' "; query_result += " ";
return this; return this;
} }