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 2 of 2.

N.rohithkumar said:   1 decade ago
Sun proposed only-jdbcodbcbridge driver.

Jdbc native driver-dbvendor.

Jdbcnet protocol driver-middleware servers.

Jdbc native protocol-db vendor.

Raju said:   1 decade ago
JDBC-ODBC :

1) Required client side Installation.
2) Plate Dependent.
3) Performance Overhead.

Native API :

1) Required client side Installation.
2) Plate Dependent.
3) Performance Overhead.

Network Protocol:

1) Support more than on DB.
2) Less Performance.
3) 100% Pure JAVA Driver.
4) Plate independent.

Native Protocol:

1) DB dependent.
2) high Performance.
3) 100% Pure JAVA Driver.
4) Plate independent.

Pradeep said:   1 decade ago
JDBC-ODBC bridge driver.

Native-API driver (partially java driver).

Network Protocol driver (fully java driver).

Thin driver (fully java driver).

Priyanka said:   1 decade ago
I know only 1 driver JDBCODBC. I don't know other drivers.

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)

Priya said:   9 years ago
hi nice


Post your comments here:

Your comments will be displayed after verification.