Driver Manager
The DriverManager class keeps track of the drivers that are available and handles establishing a connection between a driver and a particular database.
User loads the Driver explicitlyClass.forName(“acme.db.Driver”);This loads the driver class, which should itself call DriverManager.registerDriver with its instance and thus be available for a creating a connection.