Saturday 15 August 2015

Java Source World: Difference between JDBC and Hibernate

Difference between JDBC and Hibernate | Java Source World

                                                                                                          

                                                                                   Java Source World                   A Java quick reference blog



Difference between JDBC and Hibernate:


1. Hibernate is data base independent, your code will work for all ORACLE,MySQL ,SQLServeretc.In case of JDBC query must be data base specific.

2. As Hibernate is set of Objects , you don't need to learn SQL language.You can treat TABLE as a Object . Only Java knowledge is need.In case of JDBC you need to learn SQL.
3. Don’t need Query tuning in case of Hibernate. If you use Criteria Quires in Hibernate then hibernate automatically tuned your query and return best result with performance.In case of JDBC you need to tune your queries.
4. You will get benefit of Cache. Hibernate support two level of cache. First level and 2nd level. So you can store your data into Cache for better performance.In case of JDBC you need to implement your java cache.
5. Hibernate supports Query cache and It will provide the statistics about your query and database status.
6. Hibernate Supports automatically updating version of rows where JDBC doesn't.
7. Development fast in case of Hibernate because you don't need to write queries
8. No need to create any connection pool in case of Hibernate. In case of JDBC you need to write your own connection pool
9. In the xml file you can see all the relations between tables in case of Hibernate. Easy readability.
Also Read: Hibernate Framework




                                                                                  Java Source World                   A Java quick reference blog

No comments:

Post a Comment