Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is the servletcontext listener and what is JspContext and page context pls tell in simple words.

1 Answers   IBM,


which book is the best for preparing for SCWCD 1.5

4 Answers   Google,


Hi we have an urgent requirement for Java/J2ee technical lead position & also looking for "Java Guidewire claimcentre" experienced professional for Bangalore location if interested can reach srisanh@gmail.com

0 Answers  


Write a interface "CarOperations" with the following methods void turnOnEngin() void turnOffEngin() void turnOnLigths() void turnOffLights() void turnLeft() void turnRight() void accelerate() void deaccelerate() void putBreaks() void releaseBreaks()

1 Answers  


what debugging tool that can be used to debug the java programs?

1 Answers   Inforica,


what is the difference between checked and unchecked Exceptions?

4 Answers   CTS,


Explain JSP life cycle?

2 Answers   Accenture,


what is the IDE that you have used to write your java programs?

2 Answers   Inforica, Interface Software,


what is the diffrence between insurance and telecom domain?

1 Answers  


what is java virtual machine

4 Answers  


What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC

2 Answers  


what about web architecture?

1 Answers   HCL,


Categories