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 common tasks of JDBC?
What is the meaning of connection?
What causes no suitable driver error?
Explain about column name and getter method?
What are the common jdbc exceptions?
What is metadata in programming?
What is the query used to display all tables names in SQL Server (Query analyzer)?
Does jdbc use odbc?
What are the different classes through which JDBC represents statements?
Write an sql to find all records having all numeric characters in a field ?
What are the steps to connect to a database in java?
What is the full form of jdbc and what is its purpose?
What are different parts of a url?
How to rollback a JDBC transaction?
What is jdbc drivers in java?