basic difference b/w ALL types of JDBC driver.



basic difference b/w ALL types of JDBC driver...

Answer / dsr

There are four types of JDBC drivers.
1.JDBC-ODBC driver
2.native api driver
3.network protocal driver
4.thin driver

All java programmers,we can use the thin driver. this
driver was fully developed in java.

1.JDBC-ODBC Driver:middle bridge is ODBC.
2.native api driver:
3.Network protocol driver: Datbase is connected throw
network
4.Thin Driver:This is filly developed in java.

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More Core Java Interview Questions

how you will prevent inheritance is there any other way other than inheritance?

4 Answers   Wipro,


Why we use protected in java?

0 Answers  


What do you mean by stack?

0 Answers   Accenture,


What is boolean example?

0 Answers  


What is meant by distributed application? Why are we using that in our application?

0 Answers  






What is threaded programming and when is it used? : Java thread

0 Answers  


What are advantages and disadvantages of OOPs?

0 Answers   Amdocs,


What is an abstract class and abstract method?

5 Answers  


In how many ways we can do synchronization in java?

0 Answers  


Is there any way to find whether software installed in the system is registered by just providing the .exe file? I have tried the following code but its just displaying the directory structure in the registry. Here the code : package com.msi.intaller; import java.util.Iterator; import ca.beq.util.win32.registry.RegistryKey; import ca.beq.util.win32.registry.RootKey; public class RegistryFinder { public static void main(String... args) throws Exception { RegistryKey.initialize(RegistryFinder.class.getResource("jRe gistryKey.dll").getFile()); RegistryKey key = new RegistryKey(RootKey.HKLM, "Software\\ODBC"); for (Iterator<RegistryKey> subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

0 Answers   Google,


why string constant pool in java

2 Answers   TCS,


what is meant by encapsulation?

0 Answers   Aspire,


Categories