What is JDBC Driver interface?

The JDBC Driver interface provides vendor-specific implementations of the abstract classes provided by the JDBC API. Each vendors driver must provide implementations of the java.sql.Connection,Statement,PreparedStatement, CallableStatement, ResultSet and Driver.

Showing Answers 1 - 3 of 3 Answers

Jaime

  • Jul 16th, 2005
 

Here are few good tutorial topics you can read on....  

Chapter 8. JDBC Interface

Postgres provides a type 4 JDBC Driver. Type 4 indicates that the driver is written in Pure Java, and communicates in the database system's own network protocol. Because of this, the driver is platform independent; once compiled, the driver can be used on any system.

This chapter is not intended as a complete guide to JDBC programming, but should help to get you started. For more information refer to the standard JDBC API documentation. Also, take a look at the examples included with the source. The basic example is used here. 

  Was this answer useful?  Yes

Ravi

  • Aug 23rd, 2005
 

in jdbc connecion is a interface , we are using the methods in that interface but we didnt provide any implementation where is the implementation? 

  Was this answer useful?  Yes

pavan

  • Feb 3rd, 2006
 

As has been mentioned above, the implementations are provided by the database vendors like for example, the classes12.jar of oracle which has the implementations.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions