The DriverManager Class
Go Up to Using the JDBC Interfaces
The DriverManager
class is part of the java.sql
package. The JDBC framework supports multiple database drivers. The DriverManager
manages all JDBC drivers that are loaded on a system; it tries to load as many drivers as it can find. For each connection request, it locates a driver to connect to the target database URL. The DriverManager
also enforces security measures defined by the JDBC specification.