JDBC

Type 4 Driver - Native-Protocol Driver(Pure Java Driver)

The JDBC type 4 driver, also known as the Direct to Database Pure Java Driver , is a database driver implementation that converts JDBC calls directly into a vendor-specific database protocol. Written completely in Java , type 4 drivers are thus pla…

Type 3 Driver - Network-Protocol Driver(MiddleWare Driver)

The JDBC type 3 driver, also known as the Pure Java Driver for Database Middleware , is a database driver implementation which makes use of a middle tier between the calling program and the database. The middle-tier ( application server ) converts JD…

Type 2 Driver - Native-API 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. Advantages As there…

Type 1 Driver - JDBC-ODBC bridge

A JDBC driver is a software component enabling a Java application to interact with a database . JDBC drivers are analogous to ODBC drivers , ADO.NET data providers , and OLE DB providers . A JDBC driver is a software component enabling a Java …

Java Database Connectivity

JDBC is a Java-based data access technology (Java Standard Edition platform) from Sun Microsystems, Inc.. It is an acronym as it is unofficially referred to as Java Database Connectivity , with DB being universally recognized as the abbreviation fo…

Load More
That is All