337338339340341342343344
dbPool.put(poolKey, conn); } return conn; } catch (Exception e) { throw new DatabaseException(e); } }
444445446447448449450451452453
Connection conn = (Connection) iterator.next(); if (conn != null) { try { conn.close(); } catch (SQLException e) { throw new DatabaseException(e); } } } }