InterviewSolution
Saved Bookmarks
| 1. |
What is a JDBC Driver? |
|
Answer» JDBC driver is an interface enabling a Java application to interact with a database. To connect with individual databases, JDBC requires drivers for each database. The JDBC driver gives out the connection to the database and implements the protocol for transferring the query and result between client and database. |
|