What is the disadvantage of Type-4 Native-Protocol Driver?

Options
- At client side, a separate driver is needed for each database.
- Type-4 driver is entirely written in Java
- The driver converts JDBC calls into vendor-specific database protocol
- It does not support to read MySQL data.


CORRECT ANSWER : At client side, a separate driver is needed for each database.

Discussion Board
JDBC Direct Driver

Wow... My answer was correct, though I wasn't sure. Thanks for satisfying me :)

Shoaib 06-8-2015 05:29 AM

like

Wow nice it is,pkz provide more question according to student(diploma) syallabus

Priya 04-27-2015 02:19 AM

good

good

madhu 01-18-2015 12:52 PM

Type 4 driver disadvantage


The JDBC type 4 driver is known as the Direct to Database Pure Java Driver. It is a database driver implementation that converts JDBC calls directly into a vendor-specific database protocol. It is a platform independent driver and it gets install inside the Java Virtual Machine of the client. It provides higher performance then its counterparts and it also doesn't have the overhead of conversion of calls into ODBC or database API calls.

It is vendor specific and it requires separate drivers which is provided to the vendor to connect to different types of databases. For example Oracle thin-driver.

The main disadvantage to this is that drivers are database dependent, as different database vendors use widely different (and usually proprietary) network protocols.

Rohit Sharma 09-21-2014 07:39 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement