InterviewSolution
Saved Bookmarks
| 1. |
What is JDBC driver? |
|
Answer» JDBC driver is a software component having various classes and interfaces, that enables the Java application to interact with a database. To connect with INDIVIDUAL databases, JDBC requires PARTICULAR drivers for each specific database. These drivers are provided by the database vendor in addition to the database. For example:
JDBC driver provides the connection to the database. Also, it implements the PROTOCOL for sending the query and result between client and database. |
|