jdbcodbc
JDBCODBC refers to the JDBC-ODBC Bridge, a JDBC driver that allows Java programs to access a database through the ODBC driver manager. It was provided in early Java releases as sun.jdbc.odbc.JdbcOdbcDriver and served as a compatibility layer that translates JDBC calls into native ODBC calls via JNI.
In operation, a Java application connects using a JDBC URL of the form jdbc:odbc:<DSN>, where <DSN> is
The JDBC-ODBC Bridge was deprecated in Java 6 and removed in Java 8. It is generally discouraged