In JDBC, All the API?s are interfaces? Where is the actual
implementation?

Answers were Sorted based on User's Feedback



In JDBC, All the API?s are interfaces? Where is the actual implementation?..

Answer / naveen

yes,sun is given implimentation part to driver
vendors,programer no need to known this code.

Is This Answer Correct ?    3 Yes 0 No

In JDBC, All the API?s are interfaces? Where is the actual implementation?..

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

In JDBC, All the API?s are interfaces? Where is the actual implementation?..

Answer / dhagej

in case of oracle, classes12.jar provides the implementation
for these interfaces

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More JDBC Interview Questions

What is the difference between ExecuteUpdate and ExecuteQuery?

1 Answers   Exilant,


Explain about column name and getter method?

0 Answers  


Does sql allow null values ? Can we use it within where clause ?

0 Answers  


What does executeupdate return in jdbc?

0 Answers  


What is the difference between client and server database cursors?

0 Answers  






Does JDBC support stored procedures?

0 Answers  


What are the differences between resultset and rowset?

0 Answers  


What is JDBC PreparedStatement?

0 Answers  


how do we get the connection from connection pool

1 Answers  


What is 2-tier and 3-tier architecture?

1 Answers   TCS,


What is the fastest type of JDBC driver?

0 Answers  


What are the advantages of using preparedstatement over statement?

0 Answers  


Categories