what is hibernate ceteria ?

Answers were Sorted based on User's Feedback



what is hibernate ceteria ?..

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

what is hibernate ceteria ?..

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

what is hibernate ceteria ?..

Answer / lal ajith kumara

Criteria technology used to search operations in hibernate.

Is This Answer Correct ?    0 Yes 0 No

what is hibernate ceteria ?..

Answer / guest

asdf

Is This Answer Correct ?    0 Yes 14 No

Post New Answer

More Java J2EE AllOther Interview Questions

Runining mutiple tomcat server in a single machine is possible Yuo wil have to duplicate configuration with different port numbers

2 Answers   HCL,


What are the different types of ways where you can iterate over a list? : java collections

0 Answers  


How do you debug your java program?

2 Answers   HCL, Inforica,


How is hashset maintained in memory by java ?

0 Answers  


What are the types of the main implementing classes in the map interfaces? : java collections

0 Answers  






Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?

1 Answers   HCL,


What is Generic in java? Where can we write Generic ( class or method or objects or etc...)? with simple example? Thanks, Bose. Infosys 2 In which way does a Primitive data type is passed ? Sun- Microsystems 4 what is the use of declaring constructor as private? Sai- Softech 5 what is difference between global methods and local methods? 1 What is meant by class loader and how many types are there? Apple 1 what is meaning of JIT? 4 What is an abstract class? Wipro 5 what is filters and its use? Virtusa 2 why is multiple inheritance not allowed in java? Elementus-Technologies 7 Differences between jdk 1.4 and 1.5 Wipro 4 is JVM platform dependent or independent..? IBM 6 what is main purpose of abstract class? 5 what is difference between colection and collections? Tech-Mahindra 11 What error occurs if a try-catch-finally statement sequence does not have a catch clause? 2 Explain the difference between scrollbar and scrollpane? 1 Explain the differences between public, private, protected and static? 4 Explain the difference between getAppletInfo and getParameterInfo? 1 Is Cegonsoft Pvt.Ltd. a good Institute? 4 Why only one Class is public in one file? Explain in details. Thanks in Advance. 11 Which method will get invoked first in a stand alone application?

0 Answers  


How many controlers are there in spring? Plz send me ans

1 Answers   HCL,


What is markup language?

1 Answers  


What is need of DAO? Write one simple DAO example?

2 Answers   IBM,


What is the enumerator of the java collection framework? : java collections

0 Answers  


What is Visual Source Safe(source control Tool)?

1 Answers  


Categories