public static void closeAllConnections( Connection dbConnection, ResultSet rs1, ResultSet rs2, PreparedStatement... prepStmts) { closeResultSet(rs1); closeResultSet(rs1); closeStatements(prepStmts); closeConnection(dbConnection); }
public static void closeAllConnections(Connection dbConnection, PreparedStatement... prepStmts) { closeStatements(prepStmts); closeConnection(dbConnection); }