Does the user you are connecting as have all privileges on the database
GRANT ALL PRIVILEGES ON *.* TO app@ % ;
app being your connecting user
Simon
Tony Dietrich wrote:
Yep :-((
No luck
On Sat, 2003-03-15 at 12:51, simon wrote:
Have you tried adding a valid user name and password for the remote Mysql server to the getConnection() method
Connection connection = DriverManager.getConnection( "jdbc:mysql://[server ip address]:[port]/[database]", "user", "password");
Simon