SqlCtrl: SqlArray ReQuery(SqlBool)

git-svn-id: svn://ultimatepp.org/upp/trunk@2044 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-02-09 20:31:59 +00:00
parent f77bcee71c
commit e8256d6a89

View file

@ -107,6 +107,7 @@ public:
void AppendQuery(SqlBool where);
void Query(SqlBool where) { SetWhere(where); Query(); }
void ReQuery();
void ReQuery(SqlBool where) { SetWhere(where); ReQuery(); }
void Limit(int _offset, int _count) { offset = _offset; count = _count; }
void Limit(int count) { Limit(0, count); }