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 |
What is a java list?
What does the string method compareto () do?
What is class forname used for?
What checkbox method allows you to tell if a checkbox is checked?
Can a constructor have different name than a class name in java?
What is the difference between checked exception and unchecked exception?
What is difference between static and final?
What is the difference between throw and throws?
Define interface?
What is formatted output in java?
What is mean by UML? what is the use? where we are using?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }