1 | The DriverManager class keeps track of the drivers that are available and handles establishing a connection between a driver and a particular database. |
2 | User loads the Driver explicitly Class.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. |