mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
30 lines
569 B
C++
30 lines
569 B
C++
#include "query_builder.h"
|
|
|
|
QueryBuilder *QueryBuilder::select(const std::string ¶ms) {
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *QueryBuilder::where(const std::string ¶ms) {
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *QueryBuilder::from(const std::string ¶ms) {
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *QueryBuilder::limit(const int min, const int max) {
|
|
return this;
|
|
}
|
|
|
|
QueryBuilder *QueryBuilder::insert(const std::string &table_name, const std::string ¶ms_str) {
|
|
return this;
|
|
}
|
|
|
|
void QueryBuilder::finalize() {
|
|
}
|
|
|
|
QueryBuilder::QueryBuilder() {
|
|
}
|
|
|
|
QueryBuilder::~QueryBuilder() {
|
|
} |