> Hi
>
[quoted text clipped - 3 lines]
>
> Thanks
A resultset is stored in memory - I'm unsure what you mean about
"offline". To get all of the columns, ask for all of the columns.
A simple resultset example:
java.sql.Connection c = DriverManager.getConnection("your driver and
path to db", "your db user id", "your db password");
Statement get = c.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
ResultSet rs = get.executeQuery("your query");
//use your result set from here

Signature
Dave Miller
Java Web Hosting at:
http://www.cheap-jsp-hosting.com/
Lew - 12 May 2008 04:03 GMT
>> Hi
>>
[quoted text clipped - 18 lines]
>
> //use your result set from here
The newer RowSet interface lets you disconnect from the database while using
the results, unlike normal ResultSets.

Signature
Lew