mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 03:46:50 +01:00
Fix typo.
This commit is contained in:
parent
2cb6e3d97f
commit
e752ededc5
@ -365,25 +365,25 @@ QueryBuilder *SQLite3QueryBuilder::wpb(const String &col, const bool param) {
|
||||
}
|
||||
QueryBuilder *SQLite3QueryBuilder::wph(const String &col) {
|
||||
query_result += col;
|
||||
query_result += "='";
|
||||
query_result += "=";
|
||||
psph();
|
||||
query_result += "' ";
|
||||
query_result += " ";
|
||||
|
||||
return this;
|
||||
}
|
||||
QueryBuilder *SQLite3QueryBuilder::wphi(const String &col, const String &p_id) {
|
||||
query_result += col;
|
||||
query_result += "='";
|
||||
query_result += "=";
|
||||
psphi(p_id);
|
||||
query_result += "' ";
|
||||
query_result += " ";
|
||||
|
||||
return this;
|
||||
}
|
||||
QueryBuilder *SQLite3QueryBuilder::wphr(const String &col, const String &p_raw_id) {
|
||||
query_result += col;
|
||||
query_result += "='";
|
||||
query_result += "=";
|
||||
psphr(p_raw_id);
|
||||
query_result += "' ";
|
||||
query_result += " ";
|
||||
|
||||
return this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user