From 0844cf75cfefd9cb42f08351d600c8e30b90191c Mon Sep 17 00:00:00 2001 From: servertood Date: Sun, 2 Nov 2008 06:02:29 +0000 Subject: [PATCH] exclude from caching --- extra/jheidi/userManagerDialog.ajl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extra/jheidi/userManagerDialog.ajl b/extra/jheidi/userManagerDialog.ajl index 894779d8..847207ce 100755 --- a/extra/jheidi/userManagerDialog.ajl +++ b/extra/jheidi/userManagerDialog.ajl @@ -52,7 +52,9 @@ - DB db = context.get("db"); + DB db = new SQLLoggingDB((SQLLoggingDB)context.get("db")); + db.useCache(false); + DB.Result result = db.execute("show columns from `mysql`.`user` where field like '%_priv'"); String[] privList = new String[result.size()]; int[] selections = new int[8];