What is NOT a Type of JDBC Driver?
Distributed driver is not a type of JDBC driver.
The common types of JDBC drivers are:
-
JDBC-ODBC Bridge Driver: This driver uses the ODBC (Open Database Connectivity) API to connect to databases. It's relatively simple to set up, but it can be less efficient than other types of drivers.
-
Native API driver: This driver uses the native API of the database to connect to it. It's generally the most efficient type of driver, but it requires a specific driver for each database type.
-
Native Protocol driver: This driver communicates directly with the database using its native protocol. It's often the most efficient option and can be used with multiple database types.
原文地址: https://www.cveoy.top/t/topic/ozVj 著作权归作者所有。请勿转载和采集!