From e8256d6a89015cea07198d6d7ff2178a552d2daa Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 9 Feb 2010 20:31:59 +0000 Subject: [PATCH] SqlCtrl: SqlArray ReQuery(SqlBool) git-svn-id: svn://ultimatepp.org/upp/trunk@2044 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/SqlCtrl/SqlCtrl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/uppsrc/SqlCtrl/SqlCtrl.h b/uppsrc/SqlCtrl/SqlCtrl.h index 5d511330b..80f09b152 100644 --- a/uppsrc/SqlCtrl/SqlCtrl.h +++ b/uppsrc/SqlCtrl/SqlCtrl.h @@ -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); }