Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Jdbc type 5 driver

Tags:

java

jdbc

What is a JDBC type 5 driver? What are the benefits of such a driver?

Can I get any links/tutorials about type 5 drivers?

like image 346
Ranjith Avatar asked Jun 07 '10 17:06

Ranjith


People also ask

What is JDBC driver and list its types?

JDBC drivers are client-side adapters (installed on the client machine, not on the server) that convert requests from Java programs to a protocol that the DBMS can understand. There are 4 types of JDBC drivers: Type-1 driver or JDBC-ODBC bridge driver. Type-2 driver or Native-API driver.

Which Type of JDBC driver is used?

Explanation. Native-protocol, pure Java driver, uses database native protocol.

What is Type 3 JDBC driver?

Type -3 Driver JDBC is also known as Network Protocol Driver as it uses an application server that converts JDBC calls directly or indirectly into the vendor-specific database protocol.

What is JDBC Type?

There are 4 types of JDBC drivers: JDBC-ODBC bridge driver. Native-API driver (partially java driver) Network Protocol driver (fully java driver) Thin driver (fully java driver)


2 Answers

There are currently four types of JDBC drivers. See: Types of JDBC technology drivers

There is some speculation about what the next type would be like.

like image 122
Bill the Lizard Avatar answered Sep 29 '22 00:09

Bill the Lizard


It is just a thrid party implementation of JDBC. Type 5 is non-standard .

enter image description here

like image 24
Ragesh D Antony Avatar answered Sep 29 '22 02:09

Ragesh D Antony