Database - JDBC, Java Server Pages, and MySQL - Discussion

Discussion Forum : JDBC, Java Server Pages, and MySQL - General Questions (Q.No. 1)
1.
How many JDBC driver types does Sun define?
One
Two
Three
Four
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
16 comments Page 1 of 2.

Ash said:   1 decade ago
Four JDBC driver types:
__________________

1. JDBC-ODBC bridge -> It employs ODBC driver to connect to the database.

2. Native API Driver -> It uses the client-side libraries for the database.

3. Network Protocol Driver (Middleware Driver) -> makes use of middle tier between the calling program and the database.

4. Database-Protocol Driver ( Pure Java Driver) -> converts JDBC calls directly into a vendor-specific database protocol.

->Source(wiki).
(1)

Sreedhar said:   1 decade ago
Totally 4 drives in java those are

1.jdbc-odbc driver

2.native api driver

3.net protocal driver

4.native protocal driver

Sasmita said:   1 decade ago
3 drivers in java ie
1.java api driver
2.jdbc odbc driver
3.driver manager.samal.

Jaz said:   1 decade ago
No @sreedhar is correct.

Rafik said:   1 decade ago
Jdbc-odbc bridge driver.

Native API partly java driver.

Network protoclo java driver.

JDBC net pure java driver.

Nagarajan said:   1 decade ago
jdbc.odbc.JdbcOdbc.Driver

Kiran said:   1 decade ago
Jdbc-Odbc bridge driver
Native API driver( thik driver)
net protocal driver
Native protocal driver(thin driver)

G Satyanarayana said:   1 decade ago
Totally 4 Drivers.

Type 1 Driver : JDBC - ODBC Driver : convert jdbc sql calls into odbc calls

Type 2: Native API drvier : SQL calls given directly to database

Type 3: Net protocal driver : Connection is provided by Server

Type 4: Thin driver . Third party vendors provided drivers are used here.

Ahamed said:   1 decade ago
I think the four drivers described by SUN are

1. Mysql-jdbc Driver.

2. Jdbc-odbc driver.

3. Pointbase-jdbc driver.

4. Oracle-jdbc driver.

Manche Shekhar said:   1 decade ago
Sun define four types drivers: They are
1)Jdbc-Odbc bridge driver
2)Native API party java driver
3)Net protocol pure java driver
4)Native protocol pure java driver


Post your comments here:

Your comments will be displayed after verification.