answersLogoWhite

0

How many types of JDBC driver?

Updated: 12/12/2022
User Avatar

Wiki User

13y ago

Best Answer

There are four types of JDBC driver:

  1. JDBC - ODBC bridge
  2. Native-API driver
  3. Network-Protocol Driver
  4. Native-Protocol Driver
See related link for more information.
User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many types of JDBC driver?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which types of JDBC drivers allows your java programs to communicate with the ODBC driver of your dbms?

JDBC - ODBC bridge


Describe about JDBC architectural overview?

General JDBC Architecture consist of two layers: JDBC API - this provides the application to JDBC manager connection. JDBC driver API - this supports the JDBC manager to driver connection.


What do you understand by JDBC driver in java?

JDBC driver is an interface enabling a java application to interact with a database. To connect with individual database, JDBC requires drivers for each database.


What is type 4 jdbc driver?

JDBC is short for java database connectivity. There are 4 type of JDBC drivers : 1) JDBC-ODBC 2) Native-API 3) JDBC-Net 4) Native-Protocol.


Driver name for Microsoft sql server jdbc driver?

There are more than one JDBC drivers for Microsoft SQL Server. Each one has a different driver name.


Why is there a JDBC driver in java?

The JDBC exists so that you can change the underlying driver with just a change of a String, and still be able to execute the same statements on a different type of database. In summary, it was made so that you don't have to redesign your entire application to change database types.


JDBC drivers and driver maneger?

JDBC Driver Manager is a class that manages a list of database drivers. It matches connection requests from the java application with the proper database driver using communication sub protocol.


List four JDBC drivers?

JDBC ODBC BridgeNative API Partly Java DriverNet Protocol full Java driverare some types of jdbc drivers


What is jdbc-odbc bridge?

jdbc-odbc bridge is a jdbc driver required to connect java application to the specified database. Using this driver the java calls are converted to the odbc calls and then are referred to the database. Since odbc driver are the implemetation of the API written in C language. As in the case of this driver the API is provided by Sun MicroSystem itself and the implementation of these API is done by the Database Vendors.


What do you do in order to ensure that the JDBC driver for PostgreSQL is available to the DriverManager?

Call java.sql.DriverManager.loadDriver("postgresql");.


What are the steps for getting a jdbc connection?

-Loading the Driver -Establish a Connection -Execute Statements -Get Resultset -Close the database connection


What do you mean by database driver?

JDBC which is short for java database connectivity is used to connect database to a java project . To make connectivity a database driver is required to establish the connection.