Im trying to minimize my SQL queries so my resolve was to list down all ID's of the records I would need. Doing so, with one query, I can get all info regarding a certain ID.
ID Passed flag type Total
123ABC 878 0 1 1070
123ABC 1272 0 1 1507
123ABC 1152 0 1 1342
123ABC 0 0 2 0
123ABC 1045 0 1 1214
123ABC 1270 0 1 1471
123ABC 0 0 1 0
123ABC 476 0 2 787
123ABC 96 0 2 158
123ABC 23 0 3 70
123ABC 11 0 2 42
987ZYX 77 1 2 135
987ZYX 0 1 2 0
987ZYX 0 1 2 0
123ABC 487 1 2 513
123ABC 1 1 2 3
987ZYX 293 0 2 759
987ZYX 5611 0 1 6386
987ZYX 0 0 2 0
987ZYX 0 0 3 0
The above table shows a sample of the results I'd get after running my query. Problem is, I need to loop through my list of ID and get all the records from this result set that is related to that ID. Is it possible to convert this table (a ResultSet object actually) into a ArrayList or HashMap for easier indexing or can I achieve it using the actual ResultSet?
ResultSetacts as a usual iterator, so you have to convert the data to HashMap. – jutky Nov 5 '10 at 6:07