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 is the return type of execute, executequery and executeupdate?
What is jdbc dialect?
Briefly tell about the jdbc architecture.
What is jdbc oracle thin?
What are the types of statements in jdbc?
What is JDBC Savepoint? How to use it?
Does jdbc use ssl?
There is a method getColumnCount in the JDBC API. Is there a similar method to find the number of rows in a result set?
What does jdbc do?
What is JDBC Connection? Explain steps to get Database connection in a simple java program.
How can I write to the log used by DriverManager and JDBC drivers?
How to rollback a JDBC transaction?
What is connection pooling and why it is used?
Where can I find info, frameworks and example source for writing a JDBC driver?
Does jpa use jdbc?