mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
28 lines
539 B
C++
28 lines
539 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;
|
||
|
}
|
||
|
*/
|
||
|
QueryBuilder::QueryBuilder() {
|
||
|
}
|
||
|
|
||
|
QueryBuilder::~QueryBuilder() {
|
||
|
}
|