Java Mysql Problem
-
Hi.
Das ist mein Quelltext:public void connect_mysql() throws Exception { Class.forName("com.mysql.jdbc.Driver").newInstance();; } } try{ connect_mysql(); } catch (ClassNotFoundException e) { System.out.println("Fehler! Driver nicht gefunden " +e.getMessage() + " " + e.getLocalizedMessage() + e.getCause()); } catch(Exception a){}
Ich habe zu Netbeans unter der Kategorie Libarary mysql-connector-java-5.0.8-bin hinzugefügt. Aber trotzdem lautet die Bilschirmausgabe:
Fehler! Driver nicht gefunden com.mysql.jdbc.Driver com.mysql.jdbc.Drivernull
Hat jemand eine Idee was ich falsch mache ?
-
das jar richtig hinzugefügt?
wo ist der kontakt mit ip, user und passwort?lehn dich mal beispielsweise hier an
http://www.itblogging.de/java/java-mysql-jdbc-tutorial/
-
Sieht das nach richtig richtig hinzugefügt aus?
http://img818.imageshack.us/i/testay.jpg/
-
Problem gelöst. Siehe:
[]If you place your mySQL connector driver jar file in the java directory :
Java\jre1.x.x\lib\ext
is should work fine without setting anything.If you place the connector driver jar file anywhere else, you then need to set the CLASSPATH environment variable. Exactly how you set depends on your platform.
http://forums.mysql.com/read.php?39,145604,148311#msg-148311