mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 20:06:49 +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) {
|
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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user