pstmt = connection.prepareStatement(query);
pstmt.setInt(1, world_id);
ResultSet rs = pstmt.executeQuery();
while (rs.next()) {
RainOutput tempRainOutput = new RainOutput();
tempRainOutput.setWorldID(rs.getInt("world_id"));
tempRainOutput.setDayIndex(rs.getInt("day_index"));
tempRainOutput.setOutput(rs.getFloat("output"));
returnSortedRainOutputList.add(tempRainOutput);
}
rs.close();
pstmt.close();