Getting whole column from ResultSet?

I am trying the find a way to retrieve a column from from a ResultSet and put it into a vector or and array of some type without going through each piece of data one by one. Anyone have any Ideas on how I might accomplish this?Thanx,Mikael
[267 byte] By [mjduncan] at [2007-9-26 2:10:19]
# 1

I'm not aware of any thing in the ResultSet API that will translate all values in a Column into an array or Vector. You will probably have to use a loop. I wouldn't worry about inefficiency *too* much- any API based off ResultSet, even if it had a default method for translating a column into a list, would probably be doing the same thing. That is, it would be iterating through the column as well. So, I doubt your method would be any less efficient.

rvflannery at 2007-6-29 9:01:02 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Sounds good to me. Thanx for the reply!!!!!
mjduncan at 2007-6-29 9:01:02 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...