Exemplo n.º 1
0
Value Sql::Select(const String& s) {
	return Select0("select " + s);
}
Exemplo n.º 2
0
uint64_t RSDic::Select(uint64_t ind, bool bit) const{
  if (bit) return Select1(ind);
  else return Select0(ind);
}
Exemplo n.º 3
0
Value Sql::operator%(const SqlStatement& q)
{
	return Select0(Compile(q));
}