Difference between JDBC and Hibernate?
Give one sample based on the variance?
Answer Posted / kalyan
JDBC stands for Java Database Connectivity allows
developers to connect, query and update a database using
the Structured Query Language. JDBC API standard provides
Java developers to interact with different RDBMS and access
table data through Java application without learning RDBMS
details and using Database Specific JDBC Drivers.
Hibernate is an Object-Relational Mapping (ORM) solution
for JAVA. It is a powerful, high performance
object/relational persistence and query service. It allows
us to develop persistent classes following object-oriented
idiom – including association, inheritance and polymorphism.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are the steps to connect to a database in java?
What is the role of the jdbc drivermanager class?
Is it possible to connect to multiple databases? Using single statement can we update or extract data from two or three or many databases?
Why did my jdbc code throw a rollback sqlexception?
Explain the two tier and three tier architecture of jdbc.
What is the return type of class.forname() method?
What is resultsetmetadata?
What are the main steps in java to make JDBC connectivity?
What is jdbc url for mysql?
In which ways is driver class is registered with drive manager?
What is the role of class.forname while loading drivers?
List some new features available in jdbc 4.0?
What are the types of statements in jdbc?
What is the difference between client and server database cursors?
What packages are used by jdbc?