示例#1
0
文件: Sql.cpp 项目: ultimatepp/mirror
Value Sql::Select(const String& s) {
	return Select0("select " + s);
}
示例#2
0
uint64_t RSDic::Select(uint64_t ind, bool bit) const{
  if (bit) return Select1(ind);
  else return Select0(ind);
}
示例#3
0
文件: Sql.cpp 项目: ultimatepp/mirror
Value Sql::operator%(const SqlStatement& q)
{
	return Select0(Compile(q));
}