Hibernate - What is Hibernate Query Language (HQL)?

What is Hibernate Query Language (HQL)?

- Hibernate Query Language is designed for data management using Hibernate technology. It is completely object oriented and hence has notions like inheritance, polymorphism and abstraction. The queries are case-sensitive. This has an exception for Java classes and properties. The query operations are through objects. HQL acts as a bridge between Objects and RDBMS.

What is Hibernate Query Language (HQL)?

- Hibernate uses a powerful query language (HQL) that is similar in appearance to SQL. Compared with SQL, however, HQL is fully object-oriented and understands notions like inheritance, polymorphism and association.
Hibernate - Flow of Hibernate communication with RDBMS.
Flow of Hibernate communication with RDBMS - The Hibernate configuration is to be loaded and creation of configuration object is done. The mapping of all hbm files will be performed automatically...
Hibernate - Explain the role of Session interface in Hibernate.
Explain the role of Session interface in Hibernate - Session interface is a single threaded object..
Hibernate - What is a SessionFactory?
What is a SessionFactory? - The SessionFactory is the concept that is a single data store and thread safe..
Post your comment