adspace


What the benefits are of hibernate over jdbc?

Answer Posted / Pankaj Kumar Pandey

Hibernate offers several benefits over JDBC: (1) It abstracts the underlying database, allowing easy portability between databases. (2) It provides an Object-Relational Mapping (ORM) that reduces the amount of boilerplate code and simplifies the development process. (3) It generates SQL queries on the fly based on the mapped objects, reducing the need for manual querying. (4) It supports advanced features like caching, transactions, and lazy loading.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is latest hibernate version?

493