What Class.forName will do while Loading Drivers
It is used to create an instance of a driver and register it with the DriverManager. When you have loaded a driver, it is available for making a connection with a DBMS. In Advanced Java, specifically when dealing with database connectivity, the Class.forName method is used to dynamically load the JDBC driver class. JDBC (Java … Read more