MCQ: Which of the following type of jdbc driver is the fastest one?

Which of the following type of JDBC driver is the fastest one?

  1. JDBC-ODBC Bridge Driver
  2. Native API Partly Java Driver
  3. Network Protocol Driver
  4. JDBC Net Pure Java Driver (Type 4)

Answer

d. JDBC Net Pure Java Driver (Type 4)

Explanation:

JDBC Net pure Java driver (Type 4) is the fastest driver because it converts the JDBC calls into vendor-specific protocol calls and it directly interacts with the database.

Comments