Moin Zusammen!
Ich bin leider völlig verzweifelt, weil ich seit ein paar Tagen keine Verbindung mehr zu meiner Datenbank herstellen kann. Die Angelegenheit lief bis dahin stets fehlerfrei.
Die Datenbank liegt auf C:/xampp/mysql/data und heisst: Eierlei2.
Die Methode, die die Exception wirft, heisst:
[CODE lang="java" title="DB-Verbindungsaufbau"]
private Db() throws ClassNotFoundException, SQLException
{
Properties props = PropertyLoader.get();
String driverName = props.getProperty("db.driver");
System.out.println("In Db ist DriverName = "+driverName);
System.out.println("In Db ist DB.URL = "+props.getProperty("db.url"));
loadDatabaseDriver(driverName);
printAllDrivers();
connection = DriverManager.getConnection(props.getProperty("db.url"));
// connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/Eierlei2", "root", "root") ;
System.out.println("In Db ist DB.Connection = "+connection);
}[/CODE]
Die Exception lautet:
Communication Link Failure
The last packet sent successfully to the server was 0 milliseconds ago. The Driver has not recieved any packets from the server.
Das Configuraion.Properties File lautet:
[CODE lang="java" title="Configuraion.properties"]# ResourceBundle properties file
db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://192.168.2.106:3306/eierlei2
user=root&password=root&autoReconnect=true&useSSL=false[/CODE]
Benutze ich die oben auskommentierte Zeile für die Connection, kommt die Exception:
Access denied for user 'root'@'localhost' (using password:YES)
Über phpmyadmin kann ich die Datenbank wunderbar erreichen.
Ich bitte Euch ganz dringend um Hilfe, ich habe keine Ideen mehr.
Besten Dank im Voraus!!
raptorrs
Ich bin leider völlig verzweifelt, weil ich seit ein paar Tagen keine Verbindung mehr zu meiner Datenbank herstellen kann. Die Angelegenheit lief bis dahin stets fehlerfrei.
Die Datenbank liegt auf C:/xampp/mysql/data und heisst: Eierlei2.
Die Methode, die die Exception wirft, heisst:
[CODE lang="java" title="DB-Verbindungsaufbau"]
private Db() throws ClassNotFoundException, SQLException
{
Properties props = PropertyLoader.get();
String driverName = props.getProperty("db.driver");
System.out.println("In Db ist DriverName = "+driverName);
System.out.println("In Db ist DB.URL = "+props.getProperty("db.url"));
loadDatabaseDriver(driverName);
printAllDrivers();
connection = DriverManager.getConnection(props.getProperty("db.url"));
// connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/Eierlei2", "root", "root") ;
System.out.println("In Db ist DB.Connection = "+connection);
}[/CODE]
Die Exception lautet:
Communication Link Failure
The last packet sent successfully to the server was 0 milliseconds ago. The Driver has not recieved any packets from the server.
Das Configuraion.Properties File lautet:
[CODE lang="java" title="Configuraion.properties"]# ResourceBundle properties file
db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://192.168.2.106:3306/eierlei2
user=root&password=root&autoReconnect=true&useSSL=false[/CODE]
Benutze ich die oben auskommentierte Zeile für die Connection, kommt die Exception:
Access denied for user 'root'@'localhost' (using password:YES)
Über phpmyadmin kann ich die Datenbank wunderbar erreichen.
Ich bitte Euch ganz dringend um Hilfe, ich habe keine Ideen mehr.
Besten Dank im Voraus!!
raptorrs