
May 18th, 2002, 01:12 AM
|
|
Junior Member
|
|
Join Date: Apr 2002
Location: Modesto, CA US
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Here is how to do it using sessions.
result is a SQL ResultSet
session = request.getSession();
result = (ResultSet) session.getAttribute("resultObject");
And here is how to set it
session.setAttribute("resultObject", result);
I'm using it to store a SQL ResultSet so I can easily page through the display of the summary of the query.
Hmm, didn't read the whole question. The others had what you are looking for.
|