191192193194195196197198199200201
while (resultSet.next()) { String jobId = resultSet.getString("job_id"); int state = resultSet.getInt("status"); jobs.add(new JobData(jobId, state)); } } catch (SQLException e) { throw new GFacException(e); } finally {