ResultSet Paging

Hi All

Any one know how to can i page the results of Database ResultSet?, in ASP, you can use PageSize property, is there any property in JDBC?

I am developing a small search program using JSP and Servlet, my resultsset retrieves almost 1000 records, and I do not want to dump them all in one page.

Jotnarta

[332 byte] By [jotnartaa] at [2007-11-27 10:02:36]
# 1
Map the ResultSet to ArrayList<DTO> and use List#subList() to retrieve a subset.
BalusCa at 2007-7-13 0:36:58 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...