Java / JDBC
What is JDBC driver?
JDBC Driver is a software component that enables Java application to interact with the database.
There are 4 types of driver.
- JDBC-ODBC Bridge or Type 1,
- Native API or Type 2 (partially implemented using Java),
- Network protocol driver or Type 3 (complete Java),
- Thin driver or Type 4 driver (complete Java).
More Related questions...