mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
224 lines
4.6 KiB
C++
224 lines
4.6 KiB
C++
#include "sqlite3_query_builder.h"
|
|
|
|
#include "sqlite3_database.h"
|
|
#include "sqlite3_query_result.h"
|
|
|
|
#include <sstream>
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::select() {
|
|
query_result += "SELECT ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::udpate() {
|
|
query_result += "UPDATE ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::where() {
|
|
query_result += "WHERE ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::from() {
|
|
query_result += "FROM ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::insert() {
|
|
query_result += "INSERT INTO ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::values() {
|
|
query_result += "VALUES(";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::cvalues() {
|
|
query_result[query_result.size() - 2] = ' ';
|
|
query_result += ") ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::select(const std::string ¶ms) {
|
|
query_result += "SELECT " + params + " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::udpate(const std::string ¶ms) {
|
|
query_result += "UPDATE " + params + " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::where(const std::string ¶ms) {
|
|
query_result += "WHERE " + params + " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::from(const std::string ¶ms) {
|
|
query_result += "FROM " + params + " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::insert(const std::string &table_name) {
|
|
query_result += "INSERT INTO " + table_name + " ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::insert(const std::string &table_name, const std::string &columns) {
|
|
query_result += "INSERT INTO " + table_name + "(" + columns + ") ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::values(const std::string ¶ms_str) {
|
|
query_result += "VALUES(" + params_str + ") ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::val() {
|
|
//query_result += "DEFAULT, ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::val(const std::string ¶m) {
|
|
query_result += "'" + param + "', ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::val(const char *param) {
|
|
query_result += "'" + std::string(param) + "', ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::val(const int param) {
|
|
//todo add a better way
|
|
std::stringstream ss;
|
|
ss << param;
|
|
|
|
query_result += ss.str() + ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::val(const bool param) {
|
|
if (param)
|
|
query_result += "1, ";
|
|
else
|
|
query_result += "0, ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::set() {
|
|
query_result += "SET ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::cset() {
|
|
query_result[query_result.size() - 2] = ' ';
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setp(const std::string &col, const std::string ¶m) {
|
|
query_result += col + "='" + param + "', ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setp(const std::string &col, const char *param) {
|
|
query_result += col + "='" + std::string(param) + "', ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setp(const std::string &col, const int param) {
|
|
//todo add a better way
|
|
std::stringstream ss;
|
|
ss << param;
|
|
|
|
query_result += col + "=" + ss.str() + ", ";
|
|
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::setp(const std::string &col, const bool param) {
|
|
if (param)
|
|
query_result += col + "=1, ";
|
|
else
|
|
query_result += col + "=0, ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::limit(const int num) {
|
|
//query_result += "LIMIT " + num + " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::offset(const int num) {
|
|
//query_result += "OFFSET " + num + " ";
|
|
|
|
return this;
|
|
}
|
|
|
|
std::string SQLite3QueryBuilder::escape(const std::string ¶ms) {
|
|
if (!_db) {
|
|
printf("SQLite3QueryBuilder::escape !db!\n");
|
|
|
|
return "";
|
|
}
|
|
|
|
return _db->escape(params);
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::prepare() {
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::set_param(const int index, const std::string &value) {
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::set_param(const int index, const int value) {
|
|
return this;
|
|
}
|
|
QueryBuilder *SQLite3QueryBuilder::set_param(const int index, const float value) {
|
|
return this;
|
|
}
|
|
|
|
void SQLite3QueryBuilder::end_command() {
|
|
query_result += ";";
|
|
}
|
|
|
|
QueryResult *SQLite3QueryBuilder::run() {
|
|
if (!_db) {
|
|
printf("SQLite3QueryBuilder::run !db!\n");
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
return _db->query(query_result);
|
|
}
|
|
|
|
void SQLite3QueryBuilder::run_query() {
|
|
if (!_db) {
|
|
printf("SQLite3QueryBuilder::run_query !db!\n");
|
|
|
|
return;
|
|
}
|
|
|
|
_db->query_run(query_result);
|
|
}
|
|
|
|
QueryBuilder *SQLite3QueryBuilder::select_last_insert_id() {
|
|
return this;
|
|
}
|
|
|
|
SQLite3QueryBuilder::SQLite3QueryBuilder() {
|
|
}
|
|
SQLite3QueryBuilder::~SQLite3QueryBuilder() {
|
|
} |