Results 1 to 4 of 4

Thread: Types of different JDBC driver in JAVA technology

  1. #1
    Join Date
    Feb 2009
    Posts
    71

    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. #2
    Join Date
    Dec 2008
    Posts
    183

    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. #3
    Join Date
    Feb 2006
    Posts
    90

    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. #4
    Join Date
    Oct 2008
    Posts
    127

    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.

Similar Threads

  1. JDBC Driver for Open Office Base
    By Rivan in forum Software Development
    Replies: 5
    Last Post: 21-07-2010, 05:18 AM
  2. How to install the DB2 JDBC driver with Jython
    By Liliana in forum Software Development
    Replies: 4
    Last Post: 21-02-2010, 04:19 AM
  3. JAVA incomaptible types
    By Daren in forum Software Development
    Replies: 1
    Last Post: 05-10-2009, 02:27 AM
  4. How to install the JDBC driver
    By AlienKing in forum Software Development
    Replies: 2
    Last Post: 11-05-2009, 07:48 PM
  5. Types of E-Commerce Technology
    By CyberGuru in forum Guides & Tutorials
    Replies: 7
    Last Post: 14-09-2004, 08:05 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,244,796.53339 seconds with 17 queries