JDBC Drivers:What are they?
JDBC has been a widely used API since long for interaction between Java Programs and various Databases.
From a Java programmer’s perspective,JDBC API serves the following mentioned functions:
Loading the appropriate JDBC Driver.
Creating connection with a database or a table based datasource.
Sends SQL Statements to the database/source.
Processing of the retrieved results.
Loading the driver is accomplished either by [...]