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 |
Which type of JDBC driver is the fastest one?
How does JDBC differ from ODBC?
How to update a resultset programmatically?
I have getting problem to calling stored procedure from Mysql through JSP. Please help me.
what is connection pooling?
Explain the sequence of steps to connect to the database?
What is jdbc template?
Explain the various types of locking system in jdbc?
What are the Normalization Rules?
What is metadata in programming?
How is database middleware used to access legacy databases?
Why do I get UnsatisfiedLinkError when I try to use my JDBC driver?