Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:3.0
Hi,
I have 10,000 records in database(Oracle). I want to display that content 5 records per page. How handle that Privious and Next 5 records logic. I done this one retrieve all records in to Arraylist and then displayed.
But it takes lot of memory. I want in this way ....
If i click next button next 5 records getting from db and then displaying that records and .......like previous also...
How to handle this one using hibernate3.0.(I done this one using JDBC api.. I got resultset object and then implemented that above logic)?