Multiple choice technology databases

4.Which type of driver converts JDBC calls into the network protocol used by the database management system directly?

  1. Type 1 driver

  2. Type 2 driver

  3. Type 3 driver

  4. Type 4 driver

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Type 4 driver converts JDBC calls directly into the database's native network protocol, requiring no middleware or native libraries. It's a pure Java driver that communicates directly with the database. Type 1 uses ODBC, Type 2 uses native libraries, and Type 3 uses middleware.