|
| |||||||||
| Tags: download drivers, java technology, jdbc, jdbc drivers |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Types of different JDBC driver in JAVA technology
What are the different types of JDBC drivers are used in the JAVA technology? What do we need to do install the drivers for the JDBC, and where should we download the same? |
|
#2
| |||
| |||
| Re: Types of different JDBC driver in JAVA technology
Following are the JDBC driver that each time for the installation they required...Type 1 driver translates all JDBC calls into ODBC calls and sends them to the ODBC driver. 1. A JDBC-ODBC bridge Type 2 drivers convert JDBC calls into database-specific calls i.e. this driver is specific to a particular database. 2. A native-API partly Java technology-enabled driver database requests are passed through the network to the middle-tier server. 3. A net-protocol fully Java technology-enabled driver The Type 4 uses java networking libraries to communicate directly with the database server. 4. A native-protocol fully Java technology-enabled driver |
|
#3
| ||||
| ||||
| Re: Types of different JDBC driver in JAVA technology
A JDBC-ODBC bridge provides JDBC API access via one or more ODBC drivers. The JDBC DriverManager class defines objects which can connect Java applications to a JDBC driver. Note that some ODBC native code and in many cases native database client code must be loaded on each client machine that uses this type of driver. |
|
#4
| |||
| |||
| Re: Types of different JDBC driver in JAVA technology
The JDBC API defines the Java interfaces and classes that programmers use to connect to databases and send queries. The JDBC-ODBC Bridge allows access to almost any database, since the database's ODBC drivers are already available. A JDBC driver implements these interfaces and classes for a particular DBMS vendor. A native-protocol fully Java technology-enabled driver converts JDBC technology calls into the network protocol used by DBMSs directly. This allows a direct call from the client machine to the DBMS server and is a practical solution for Intranet access. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Types of different JDBC driver in JAVA technology" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| JDBC Driver for Open Office Base | Rivan | Software Development | 5 | 21-07-2010 06:18 AM |
| How to install the DB2 JDBC driver with Jython | Liliana | Software Development | 4 | 21-02-2010 04:19 AM |
| JAVA incomaptible types | Daren | Software Development | 1 | 05-10-2009 03:27 AM |
| How to install the JDBC driver | AlienKing | Software Development | 2 | 11-05-2009 08:48 PM |
| Types of E-Commerce Technology | CyberGuru | Guides & Tutorials | 7 | 14-09-2004 09:05 PM |