What is JDBC and ODBC and what are the differences between
them?
Answer Posted / anshu aggarwal
JDBC is Java Database Connectivity. It enables java programs
to execute sql statements. JDBC makes it possible to write a
single database application that can run on different
platforms and interact with different DBMS. JDBC is language
dependent i.e it is used only to make connectivity with java.
ODBC is open database connectivity. The goal of ODBC is to
make it possible to access any data from any application,
regardless of which database management system (DBMS) is
handling the data so it is language independent.
| Is This Answer Correct ? | 49 Yes | 20 No |
Post New Answer View All Answers
What is benefit of using preparedstatement in java?
What are different types of ResultSet?
Is jdbc object oriented?
How do you insert images into database using jdbc?
When does the result for an sql statement return null?
How can you make the connection using jdbc?
Explain the steps in writing a java program using jdbc?
What is Apache DBCP API?
What is database connection pooling? Advantages of using a connection pool?
What is the use of statement in jdbc?
When do we use execute method in java jdbc?
What is executequery in java?
What is meant by jdbc and odbc?
Is there another way of dealing with the result set that could execute faster?
How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?