Skip to content
Related Articles
Open in App
Not now

Related Articles

Difference between ODBC and JDBC

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 09 Nov, 2022
Improve Article
Save Article
Like Article
ODBCJDBC
ODBC Stands for Open Database Connectivity.JDBC Stands for java database connectivity.
Introduced by Microsoft in 1992.Introduced by SUN Micro Systems in 1997.
We can use ODBC for any language like C,C++,Java etc.We can use JDBC only for Java languages.
We can choose ODBC only windows platform.We can Use JDBC in any platform.
Mostly ODBC Driver developed in native languages like C,C++.JDBC Stands for java database connectivity.
For Java applications it is not recommended to use ODBC because performance will be down due to internal conversion and applications will become platform Dependent.For Java application it is highly recommended to use JDBC because there are no performance & platform dependent problem.
ODBC is procedural.JDBC is object oriented.
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!