Hi
I'm new to Struts and would like some directions.
I'm used to servlets, jsp, scriplets with recordset eg.
ResultSet rs = stmt.executeQuerY("....");
while( rs.next() )
{ %>
<%= rs.getString("...") %>
<%}
Now I store my data in a bean (loaded from a row in the database) and it
works fine when I load, store and update one single row but how do I do
when I have a list of rows?
I could load all my rows into a collection of beans but what if there are
millions of rows? Using a recordset I can limit my selection to 10 records
at a time and then move my database cursor forward or reverse to show the
next /prev 10 records. How is this performed using Struts and beans?
Regards,
Johannes