what is hibernate ceteria ?
Answers were Sorted based on User's Feedback
Answer / kameshwar
The interface org.hibernate.Criteria represents a query
against a particular persistent class. The Session is a
factory for Criteria instances.
Criteria crit = sess.createCriteria(Cat.class);
crit.setMaxResults(50);
List cats = crit.list();
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sushant
Hibernate is a replacement of DAO layer used in traditional
JDBC based applications.
And similarly you can say that Criteria is a replacement for
query to the DB.
Used somewhat like...
Session session = sessionFactory.openSession();
Criteria demoCriteria = session.createCriteria(Animal.class);
....
later you can set some property or restrictions in the query...
demoCriteria.add( Restrictions.like("name", "Dog%") )..
...etc.
..
and then execute this criteria to get the results.
List resultsList = demoCriteria.list();
hope that helps.
Mail me for some more info if you require some.
-Sushant
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / lal ajith kumara
Criteria technology used to search operations in hibernate.
| Is This Answer Correct ? | 0 Yes | 0 No |
what debugging tool that can be used to debug the java programs?
Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
what is mean by hasing and maping in java platform and advantage?
what is difference between web server and application server?
What are maps interfaces in the java collections? : java collections
what is the difference between banking and insurance domain?
What is iterator in the java collections framework? : java collections
Which interface does java.util.hashtable implement?
What is the enumerator of the java collection framework? : java collections
How do you create UserTransaction Object? How do you rollback a transaction in a method?