8 #ifndef litesql_selectquery_hpp 9 #define litesql_selectquery_hpp 28 SelectQuery() : _distinct(
false), _limit(0), _offset(0), _where(
"True") {}
34 SelectQuery & source(std::string s, std::string alias=
"");
40 SelectQuery & orderBy(std::string ob,
bool ascending=
true);
41 operator std::string()
const;
42 std::string asString()
const {
return this->
operator std::string(); }
Definition: backend.hpp:14
includes string.hpp and split.hpp
A base class for expression in WHERE - clause.
Definition: expr.hpp:19
Contains Expr-class hierarchy and operator overloadings for them.
a class that helps creating SELECT-SQL statements.
Definition: selectquery.hpp:18
splits and joins strings.
Definition: split.hpp:15