OK, here's my problem, I updated MySQL to version 4.1.11 a couple of days ago, everything seemed to be fine. Connecting through the MySQL-client works great from localhost and the local network, but the official java mysql-connector from the MySQL site does only work within the server (localhost) if I try to connect from the local network I get this:
[GameEngineCore] General Exception:
java.sql.SQLException: Unable to connect to any hosts due to exception: java.net
.ConnectException: Connection refused: connect
at com.mysql.jdbc.Connection.createNewIO(Connection.java:1592)
at com.mysql.jdbc.Connection.<init>(Connection.java:486)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java
:326)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at GameEngineMainLoop.connect(GameEngineMainLoop.java:324)
at GameEngineMainLoop.programCheck(GameEngineMainLoop.java:88)
at GameEngineMainLoop.run(GameEngineMainLoop.java:50)
at java.util.TimerThread.mainLoop(Unknown Source)
at java.util.TimerThread.run(Unknown Source)
does anyone have any idea how to solve this, or if this is a known error?
*out MRTN