In this tutorial we are going to introduce concept of Hibernate ScrollableResults.
Hibernate ScrollableResults :
In Hibernate ScrollableResults is concept to retrieve the database content
one by one in place of entire data at once.
It is defined in org.hibernate.ScrollableResults .You can iterate records
through ScrollableResults object.
some methods -
There are many more methods.
Example : In this example we are showing how to use ScrollableResults in Hibernate applicaion.
package net.roseindia.main;
import net.roseindia.util.HibernateUtil;
import org.hibernate.Query;
import org.hibernate.ScrollableResults;
import org.hibernate.Session;
public class MainClazz {
public static void main(String[] args) {
Session session = HibernateUtil.getSessionFactory().openSession();
String hql = "SELECT stud.roll, stud.name, stud.course FROM Student stud ";
Query query = session.createQuery(hql);
ScrollableResults results = query.scroll();
System.out.println("RollNo.\tName\tCourse");
while (results.next()) {
System.out.print(results.get(0));
System.out.print("\t" + results.get(1));
System.out.print("\t" + results.get(2));
System.out.println();
}
results.close();
session.close(); // session is closed
}
}
Output :
Hibernate: select student0_.roll_no as col_0_0_, student0_.name as col_1_0_, student0_.course as col_2_0_ from student student0_ RollNo. Name Course 1 Ron java 3 Roxi unix 4 Jenson Hibernate 5 jacqub Hibernate 6 Mandy C 8 John Hibernate 9 Linda Hibernate
Click here to download complete source code
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Hibernate ScrollableResults
Post your Comment