InterviewSolution
Saved Bookmarks
| 1. |
What Is Jdbc Driver Interface? |
|
Answer» The JDBC Driver INTERFACE PROVIDES vendor-specific implementations of the abstract classes provided by the JDBC API. Each vendor driver MUST provide implementations of the java.sql.Connection, STATEMENT, PREPARED Statement, CallableStatement, ResultSet and Driver. The JDBC Driver interface provides vendor-specific implementations of the abstract classes provided by the JDBC API. Each vendor driver must provide implementations of the java.sql.Connection, Statement, Prepared Statement, CallableStatement, ResultSet and Driver. |
|