Learning about JDBC driver
Java Database Connectivity (JDBC) is an Application Programming Interface (API), which defines how a client should access and interact with a database from Java. Each provider (IBM, Oracle, Sun, Microsoft, and others) implements the mechanism (the "How To") for its own product, allowing the client not to be bothered with the details of each implementation and worrying only about its interface. In Java slang, this is known merely as a controller or JDBC driver.
Note
A JDBC driver, generally speaking, consists of one or various files with a .jar
extension, which must be copied on a certain path (Java CLASSPATH
, that is) so that applications can make use of it instead.
In order for a JDBC driver to be used, Java programs require the following information:
- URL: This is a string that specifies, among other things, the protocol, location of the server, port, and name of the database.
- Driver: This is the name of the class that implements the
java.sql.Driver
interface...