Hi all, I'm trying to access a MySQL database I've set up on my account using java however I'm having problems whenever I try to connect.
The code in java I have is:
Connection conn = DriverManager.getConnection("jdbc:mysql://cs413project.x10host.com:3306/cs413pro_db", "username", "password");
username and password are filled in, I've just removed them for this post.
The error I get is:
java.sql.SQLException: Access denied for user 'username'@'host86-160-72-196.range86-160.btcentralplus.com' (using password: YES)
I'm at a stump as how to fix this and would appreciate any help.
The code in java I have is:
Connection conn = DriverManager.getConnection("jdbc:mysql://cs413project.x10host.com:3306/cs413pro_db", "username", "password");
username and password are filled in, I've just removed them for this post.
The error I get is:
java.sql.SQLException: Access denied for user 'username'@'host86-160-72-196.range86-160.btcentralplus.com' (using password: YES)
I'm at a stump as how to fix this and would appreciate any help.