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 transaction processing in jdbc?
When do we get java.sql.SQLException: No suitable driver found?
code to insert values/rows into oracle database from a java swing textfield when a button is pressed(using preparedstatements)
Explain about the Try Block?
What is a statement?
What is an escape syntax?
In which ways is driver class is registered with drive manager?
What are the different types of statements in jdbc?
What is ojdbc?
Is jdbc faster than odbc?
What is the JDBC syntax for using a literal or variable in a standard Statement?
Briefly tell about the jdbc architecture.
What is jdbc and jpa?
What are the advantages of using preparedstatement over statement?
Why do we need jdbc?