Hi,
Hibernate is ORM tool in Java. It is very popular for writing database access layer for enterprise applications. This is being used by large number of developers around the world to code their data access layer.
ORM stands for object relational mapping which is a tool that converts your Java object to relational database table's row data.
Hibernate reduces a lot of effort for application development.
Thanks
Hi,
Hibernate actually generates the SQL for you while interacting with the database. For example if you are reading the data from a table then it will generate the select query to get data.
After getting the data from database Hibernate framework will create Java object and populate the data in it.
So, it becomes very easy for the developers to develop data access layer in the application.
Thanks
Ads