Mysql
 sql >> Datenbank >  >> RDS >> Mysql

DriverManager kein passender Treiber mysql

Zuerst müssen Sie den JDBC-Treiber vor der Verbindung laden

// Notice, do not import com.mysql.jdbc.*
// or you will have problems!

//Load Driver
try {
  // The newInstance() call is a work around for some
  // broken Java implementations
  Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception ex) {
  // handle the error
}

con=DriverManager.getConnection(connectieString);
System.out.println ("Database connection established");

Stellen Sie sicher, dass Sie mysql-connector-java-5.x.x-bin.jar im Klassenpfad haben, wenn Sie Ihre Anwendung ausführen.