390391392393394395396397398399400
while (rs.next()) { Color f = new Color(rs.getInt("color_foreground")); Color b = new Color(rs.getInt("color_background")); JColorPair cp = new JColorPair(f,b); colorList.put(rs.getString("decision"),cp); } rs.close(); stmt.close();