mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
497 lines
9.7 KiB
C++
497 lines
9.7 KiB
C++
#include "sqlite3_query_builder.h"
|
|
|
|
#include "sqlite3_connection.h"
|
|
#include "sqlite3_database.h"
|
|
#include "sqlite3_prepared_statement.h"
|
|
#include "sqlite3_query_result.h"
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::select() {
|
|
query_result += "SELECT ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::update() {
|
|
query_result += "UPDATE ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::del() {
|
|
query_result += "DELETE FROM ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::cvalues() {
|
|
ERR_FAIL_COND_V(query_result.length() <= 2, this);
|
|
|
|
String qr = query_result.as_string();
|
|
|
|
qr[qr.length() - 2] = ' ';
|
|
|
|
query_result.clear();
|
|
query_result.append(qr);
|
|
query_result += ") ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::next_value() {
|
|
ERR_FAIL_COND_V(query_result.length() <= 2, this);
|
|
|
|
String qr = query_result.as_string();
|
|
|
|
qr[qr.length() - 2] = ' ';
|
|
|
|
query_result.clear();
|
|
query_result.append(qr);
|
|
query_result += "), (";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::begin_transaction() {
|
|
query_result += "BEGIN TRANSACTION;";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::commit() {
|
|
query_result += "COMMIT;";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::str() {
|
|
query_result += "'";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::cstr() {
|
|
query_result += "'";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::like(const String &str) {
|
|
if (str.empty()) {
|
|
query_result += "LIKE ";
|
|
} else {
|
|
nlike(escape(str));
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nselect(const String ¶ms) {
|
|
query_result += "SELECT ";
|
|
query_result += params;
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::nupdate(const String ¶ms) {
|
|
query_result += "UPDATE ";
|
|
query_result += params;
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::ndel(const String ¶ms) {
|
|
query_result += "DELETE FROM ";
|
|
query_result += params;
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nwhere(const String ¶ms) {
|
|
query_result += "WHERE ";
|
|
|
|
if (!params.empty()) {
|
|
query_result += params;
|
|
query_result += " ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nfrom(const String ¶ms) {
|
|
query_result += "FROM ";
|
|
|
|
if (!params.empty()) {
|
|
query_result += params;
|
|
query_result += " ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::insert(const String &table_name, const String &columns) {
|
|
query_result += "INSERT INTO ";
|
|
|
|
if (!table_name.empty()) {
|
|
query_result += table_name;
|
|
query_result += " ";
|
|
}
|
|
|
|
if (!columns.empty()) {
|
|
query_result += "(";
|
|
query_result += columns;
|
|
query_result += ") ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::nvalues(const String ¶ms_str) {
|
|
query_result += "VALUES(";
|
|
|
|
if (!params_str.empty()) {
|
|
query_result += params_str;
|
|
query_result += ") ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::val() {
|
|
//query_result += "DEFAULT, ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nval(const String ¶m) {
|
|
query_result += "'";
|
|
query_result += param;
|
|
query_result += "', ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::vals(const String ¶m) {
|
|
query_result += "'";
|
|
query_result += escape(param);
|
|
query_result += "', ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::vals(const char *param) {
|
|
query_result += "'";
|
|
query_result += escape(String(param));
|
|
query_result += "', ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::vali(const int param) {
|
|
query_result += itos(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::valb(const bool param) {
|
|
if (param) {
|
|
query_result += "1, ";
|
|
} else {
|
|
query_result += "0, ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::valf(const float param) {
|
|
query_result += String::num(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::vald(const double param) {
|
|
query_result += String::num(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::valph() {
|
|
psph();
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::valphi(const String &p_id) {
|
|
psphi(p_id);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::valphr(const String &p_raw_id) {
|
|
psphi(p_raw_id);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nlike(const String &str) {
|
|
query_result += "LIKE '";
|
|
query_result += str;
|
|
query_result += "' ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::sets() {
|
|
query_result += "SET ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::cset() {
|
|
ERR_FAIL_COND_V(query_result.length() <= 2, this);
|
|
|
|
String qr = query_result.as_string();
|
|
|
|
qr[qr.length() - 2] = ' ';
|
|
|
|
query_result.clear();
|
|
query_result.append(qr);
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::nsetp(const String &col, const String ¶m) {
|
|
query_result += col;
|
|
query_result += "='";
|
|
query_result += param;
|
|
query_result += "', ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setps(const String &col, const char *param) {
|
|
query_result += col;
|
|
query_result += "='";
|
|
query_result += escape(String(param));
|
|
query_result += "', ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setpi(const String &col, const int param) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
query_result += itos(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setpb(const String &col, const bool param) {
|
|
if (param) {
|
|
query_result += col;
|
|
query_result += "=1, ";
|
|
} else {
|
|
query_result += col;
|
|
query_result += "=0, ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setpf(const String &col, const float param) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
query_result += String::num(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setpd(const String &col, const double param) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
query_result += String::num(param);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setph(const String &col) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psph();
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setphi(const String &col, const String &p_id) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psphi(p_id);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setphr(const String &col, const String &p_raw_id) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psphr(p_raw_id);
|
|
query_result += ", ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::nwp(const String &col, const String ¶m) {
|
|
query_result += col;
|
|
query_result += "='";
|
|
query_result += param;
|
|
query_result += "' ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wps(const String &col, const char *param) {
|
|
query_result += col;
|
|
query_result += "='";
|
|
query_result += escape(String(param));
|
|
query_result += "' ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wpi(const String &col, const int param) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
query_result += itos(param);
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wpb(const String &col, const bool param) {
|
|
if (param) {
|
|
query_result += col;
|
|
query_result += "=1 ";
|
|
} else {
|
|
query_result += col;
|
|
query_result += "=0 ";
|
|
}
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wph(const String &col) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psph();
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wphi(const String &col, const String &p_id) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psphi(p_id);
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::wphr(const String &col, const String &p_raw_id) {
|
|
query_result += col;
|
|
query_result += "=";
|
|
psphr(p_raw_id);
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::limit(const int num) {
|
|
query_result += "LIMIT ";
|
|
query_result += itos(num);
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::offset(const int num) {
|
|
query_result += "OFFSET ";
|
|
query_result += itos(num);
|
|
query_result += " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::land() {
|
|
query_result += "AND ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::lor() {
|
|
query_result += "OR ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::wildcard() {
|
|
query_result += "%";
|
|
|
|
return this;
|
|
}
|
|
|
|
// Prepared statement placeholders
|
|
QueryBuilder *SQLite3QueryBuilder::psph() {
|
|
query_result += "?";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::psphi(const String &p_id) {
|
|
if (p_id.is_valid_unsigned_integer()) {
|
|
query_result += "?" + p_id;
|
|
} else {
|
|
query_result += ":" + p_id;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::psphr(const String &p_raw_id) {
|
|
query_result += p_raw_id;
|
|
|
|
return this;
|
|
}
|
|
|
|
String SQLite3QueryBuilder::escape(const String ¶ms) {
|
|
ERR_FAIL_COND_V(!_connection.is_valid(), String());
|
|
|
|
return _connection->escape(params);
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::end_command() {
|
|
query_result += ";";
|
|
|
|
return this;
|
|
}
|
|
|
|
Ref<QueryResult> SQLite3QueryBuilder::run() {
|
|
if (!_connection.is_valid()) {
|
|
printf("SQLite3QueryBuilder::run !db!\n");
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
return _connection->query(query_result);
|
|
}
|
|
|
|
void SQLite3QueryBuilder::run_query() {
|
|
if (!_connection.is_valid()) {
|
|
printf("SQLite3QueryBuilder::run_query !db!\n");
|
|
|
|
return;
|
|
}
|
|
|
|
_connection->query_run(query_result);
|
|
}
|
|
|
|
Ref<PreparedStatement> SQLite3QueryBuilder::create_prepared_statement() {
|
|
ERR_FAIL_COND_V(!_connection.is_valid(), Ref<PreparedStatement>());
|
|
|
|
Ref<PreparedStatement> stmt = _connection->create_prepared_statement();
|
|
|
|
if (stmt.is_valid()) {
|
|
stmt->set_sql(get_result());
|
|
}
|
|
|
|
return stmt;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::select_last_insert_id() {
|
|
return this;
|
|
}
|
|
|
|
SQLite3QueryBuilder::SQLite3QueryBuilder() {
|
|
}
|
|
SQLite3QueryBuilder::~SQLite3QueryBuilder() {
|
|
}
|