Loading a JDBC Driver: call Class.forName() within the code : Driver « Database SQL JDBC « Java






Loading a JDBC Driver: call Class.forName() within the code

   

public class Main {
  public static void main(String[] argv) throws Exception {
    String driverName = "org.gjt.mm.mysql.Driver";
    Class.forName(driverName);
  }
}

   
    
    
  








Related examples in the same category

1.Get Driver Property Info
2.Get Driver Name
3.int java.sql.Driver.getMajorVersion()
4.int java.sql.Driver.getMinorVersion()
5.boolean java.sql.Driver.jdbcCompliant()
6.Enumeration java.sql.DriverManager.getDrivers()
7.Get Driver Version
8.JDBC Driver Information
9.Listing All Loaded JDBC Drivers and gets information about each one.
10.DriverPropertyInfo[] java.sql.Driver.getPropertyInfo(String url, Properties info)
11.Enable JDBC logging
12.JDBC driver url