2005. 9. 6. 14:27
Definition of JDBC type 2 driver |
The JDBC type 2 driver, also known as the Native-API driver is a database driver implementation that uses the client-side libraries of the database. The driver converts JDBC method calls into native calls of the database API. The type 2 driver is not written entirely in Java as it interfaces with non-Java code that makes the final database calls. The driver is compiled for use with the particular operating system. For platform interoperability, the Type 4 driver, being a full-Java implementation, is preferred over this driver. However the type 2 driver provides more functionality and performance that the type 1 driver as it does not have the overhead of the additional ODBC function calls. See also |
'JAVA' 카테고리의 다른 글
Definition of JDBC type 4 driver (0) | 2005.09.06 |
---|---|
Definition of JDBC type 3 driver (0) | 2005.09.06 |
Definition of JDBC type 1 driver (0) | 2005.09.06 |
Sun에서 제공하는 J2EE BluePrints (0) | 2005.09.06 |
EJB 개발의 필요성과 특징, N-tier비즈니스 환경의 이해, 분산 환경 (0) | 2005.09.06 |