Java / JDBC
Explain JDBC-ODBC bridge driver.
JDBC is the Java API for SQL databases: DriverManager or DataSource, Connection, Statement or PreparedStatement, and ResultSet.
This driver converts the JDBC calls into ODBC function calls and utilizes an ODBC driver to connect to the database. This type of driver is not recommended.
The advantage is easy to use and connect to the database while the disadvantages are,
- Degraded performance due to ODBC call conversion,
- Requires ODBC driver to be installed on client machine.
More Related questions...