Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how many JDBC drivers ?name them?

Answers were Sorted based on User's Feedback



how many JDBC drivers ?name them?..

Answer / guest

There are 4 JDBC drivers are available:
*JDBC-ODBC Bridge Driver:-Popular name is Type-1 Driver.In
this connection some native code or native database client
code must be loaded on each client machine due to this
process it is slower than other drivers.It uses
JDBC-Bridge-ODBC means between JDBC and ODBC one bridge is
work that establise the connection between application and
DataBase... It is suitable for automatic installation and
downloading java technology application is not important.
*Native API partly Java Driver:-Known as Type-2 Driver.It
enables driver converts JDBC calls into calls on the client
API for Oracle or any other databases.This driver need to
load some binary code on client machine like JDBC-ODBC
Bridge Driver.
*Network Protocol Driver:-Known as Type-3 Driver.
*Jdbc net pure Java Driver:-Known as Type-4 Driver.

Is This Answer Correct ?    23 Yes 1 No

how many JDBC drivers ?name them?..

Answer / naresh katakam

The JDBC Driver provides vendor-specific implementations of
the abstract classes provided by the JDBC API. This driver
is used to connect to the database.

there are:
Type 1 : JDBC-ODBC Bridge Driver
Type 2: Native API Partly Java Driver
Type 3: Network protocol Driver-
Type 4: JDBC Net pure Java Driver

Is This Answer Correct ?    20 Yes 0 No

how many JDBC drivers ?name them?..

Answer / sai

4 Types of drivers are there
Type 1 : JDBC-ODBC Bridge Driver(Thick Driver)
Type 2: Native API Partly Java Driver
Type 3: Network protocol Driver-
Type 4: JDBC Net pure Java Driver(Thin Driver)

Is This Answer Correct ?    8 Yes 0 No

how many JDBC drivers ?name them?..

Answer / kkkk

TYPE-1 : JDBC-ODBC BRIDGE DRIVER
TYPE-2 : NATIVE API PARTLY JAVA DRIVER
TYPE-3 : NETWORK PROTOCOL DRIVER
TYPE-4 : JDBC NET PURE JAVA DRIVER

Is This Answer Correct ?    6 Yes 0 No

how many JDBC drivers ?name them?..

Answer / priya

TYPE 1: JDBC AND ODBC Bridge
TYPE 2:Native API,partly java driver
TYPE 3:Networking protocol,all java driver
TYPE 4:Native potocol,all-java driver

Is This Answer Correct ?    4 Yes 0 No

how many JDBC drivers ?name them?..

Answer / yazhini

JDBC drivers are divided into four types or levels.There are:
Type 1:JDBC-ODBC Bridge driver(Bridge)
Type 2:Native-API/partly java driver(Native)
Type 3:All java/Net-protocol driver(Middleware)
Type 4:All java/Native-protocol driver(Pure)

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More JDBC Interview Questions

How can I get or redirect the log used by DriverManager and JDBC drivers?

0 Answers  


What is the equivalent method for precompiled SQL Statement in JDBC?

1 Answers  


i am user who logined the application..after that another valid user will also logind..so that is it neccessary to create jdbc connection for each and every user...plz explain it with proper answer...plz help me

5 Answers   IBM,


What is execute(), executeUpdate() and executeQuery() methods?

10 Answers  


What do you mean by jdbc batch processing and what are the advantages of using jdbc batch processing?

0 Answers  


What are the exceptions in jdbc?

0 Answers  


How can I instantiate and load a new CachedRowSet object from a non-JDBC source?

0 Answers  


can we create a own jdbc driver? how can we create?

1 Answers   HCL,


What is the purpose of jdbc resultset interface?

0 Answers  


java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }

6 Answers   CTS,


Why can't Tomcat find my Oracle JDBC drivers in classes111.zip?

0 Answers  


How transactions are performed using JDBC ?

2 Answers  


Categories