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 |
Explain the difference between inner and outer join ?
How is jndi useful for Database connection?
Explain the necessary steps to connect to the database in java?
What are the new features added to JDBC 4.0?
What is the fastest type of JDBC driver?
Can I set up a connection pool with multiple user IDs? The single ID we are forced to use causes problems when debugging the DBMS.
what exactly happens when we execute "Class.forname("Driver class name");"?Explain indetail
10 Answers Accenture, HP, IBM, Infosys, SAP Labs, SAS, Sasken, Trigent, Wipro,
How warnings are retrieved in JDBC?
Which Java and java.sql data types map to my specific database types?
why we don't use the type 2 driver for connect to the database in jdbc?
Define preparedstatement.
Why is jdbc needed?