What is a JDBC driver? A JDBC driver implements (provides code) the interfaces in the JDBC API. This enables a Java program to send SQL queries to a DBMS and receive back the results. The java.sql package that comes along with JDK, contains various classes which specify the behavior. The actual code implementing that […]