Anyone please tell me the difference betweem Hibernate createCriteria, createQuery, createSQLQuery function? What are the data this three functions returns or direct me to the proper and simple link to study all this hibernate things.
Thanks..
|
Anyone please tell me the difference betweem Hibernate createCriteria, createQuery, createSQLQuery function? What are the data this three functions returns or direct me to the proper and simple link to study all this hibernate things. Thanks.. |
|||||||||||||
|
|
To create query in the Hibernate ORM framework, there is three different types. The following are the three ways to create query instance:
look into the details of each category in detail.
The method createQuery() creates Query object using the HQL syntax. Fro example
The method createSQLQuery() creates Query object using the native SQL syntax. Fro example
The method createCriteria() creates Criteria object for setting the query parameters. This is more useful feature for those who don't want to write the query in hand. You can specify any type of complicated syntax using the Criteria API.
|
||||
|