844845846847848849850851852853854
prof = new Profiler(); prof.startCollecting(); try { JdbcUtils.closeSilently(conn); } finally { prof.stopCollecting(); profClose = prof.getTop(3); } long time = System.currentTimeMillis() - start; String success; if (time > 1000) {
824825826827828829830831832833834
prof.startCollecting(); Connection conn; try { conn = server.getConnection(driver, url, user, password); } finally { prof.stopCollecting(); profOpen = prof.getTop(3); } prof = new Profiler(); prof.startCollecting(); try {
832833834835836837838839840841842