stmt.setFetchSize(Properties.Fetch_Size);
stmt.setMaxRows(Properties.MaxRows);
stmt.setQueryTimeout(Properties.QueryTimeout);
SQLParser Parser = new SQLParser(stmt, null);
DBResult Result = Parser
.QueryExecute(com.trulytech.mantis.system.Properties.Cachekeys
.getProperty(Key));
com.trulytech.mantis.system.Properties.cacheTable.put(Key
.toLowerCase(), Result);
logWriter.Info("refresh cache table successfully (" + Key + ", total "
+ Result.getResultBuffer().size() + " records) ");
} catch (Exception e) {
logWriter.Error("refresh cache table failure (" + Key + ") " + e.toString());
} finally {
try {