Java / JDBC
Explain JDBC-ODBC bridge driver.
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...