In JDBC, All the API?s are interfaces? Where is the actual
implementation?
Answers were Sorted based on User's Feedback
Answer / rajendra
JDBC accomplishes its goals through a set of Java
interfaces, each implemented differently by individual
vendors. The set of classes that implement the JDBC
interfaces for a particular database engine is called a
JDBC driver. In building a database application, you do not
have to think about the implementation of these underlying
classes at all; the whole point of JDBC is to hide the
specifics of each database and let you worry about just
your application
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / dhagej
in case of oracle, classes12.jar provides the implementation
for these interfaces
| Is This Answer Correct ? | 0 Yes | 1 No |
In which ways is driver class is registered with drive manager?
What is Type-1 Driver and when this driver is used?
Explain the locking system in jdbc?
Explain Basic Steps in Writing a Java Program Using Jdbc?
What are the different types of locking in JDBC?
If you are given a choice to implement the code to either insert a record or update if already exist, which approach will you follow ?
What is jdbc connection string?
What is jdbc and odbc?
How can we disable a constraint ?
why are using type4 driver in realtime projects?
Why do we need jdbc driver?
What is the JDBC syntax for using a literal or variable in a standard Statement?