Loading a Driver

Loading a Driver The first step to develop a JDBC application is to load and register the required driver using the driver manager. We can load and register a driver: 1. Using the forName() method 2. Using the registerDriver() method 3. By setting system property Using the forName ( ) Method The forName ( ) method is available in the java.lang.Class class. The forName …

Loading a Driver Read More »