Difference between JDBC and Hibernate?
Give one sample based on the variance?

Answer Posted / mukundan

Hibernate is one level above JDBC in the sense that Hiberate
internally uses JDBC. Hence a direct comparison may not be
effecient. Still...

Hibernate is Object based mapping (ORM). JDBC concerns more
of RDB meta data mapped to the members of the java objects
i.e. POJO.

Data sent and results returned from RDB loaded back into
Domain (POJO) objects are taken care internally by
Hibernate. In JDBC loading the returned data from RDB into
java objects to be done externally, by developer.

Hibernate caches data at Level 1 and supports optional Level
2 caching through third party software (ehcache,
TreeCache/JBoss cache etc.) Caching is totally external to
JDBC.

Hibernate supports HQL which is again more Java Object
based. JDBC supports only SQL and relating and loading Java
objects should be done externally by developer.

Hibernate supports lazy loading of objects which JDBC
doesn't support.

RDB Table dependency and integrity in Hibernate is supported
through Object relationships. It is external to JDBC.

Through Object relationship (defined in XML) the entire RDB
DDL could be generated. This is out of scope in JDBC.

Is This Answer Correct ?    25 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is in terms of jdbc a datasource?

712


What does connection pooling mean ?

737


There is a method getColumnCount in the JDBC API. Is there a similar method to find the number of rows in a result set?

798


What is the query used to display all tables names in SQL Server (Query analyzer)?

711


What is JDBC Savepoint? How to use it?

830


Explain jdbc savepoint?

714


What is drivermanager in java?

670


How does JDBC API helps us in achieving loose coupling between Java Program and JDBC Drivers API?

819


What are the differences between execute, executequery, and executeupdate?

678


What does jdbc setmaxrows method do?

678


What is a statement?

731


What are the exceptions in jdbc?

659


How does a file store compare with a jdbc store?

832


What is “dirty read” in JDBC? Which isolation level prevents dirty read?

749


How do you insert images into database using jdbc?

769