I am using mysql and connector/j, trying to connect to the database on my localhost, following this tutorial. Here is a part of the code I am using:
String url = "jdbc:mysql://localhost:3306/mysql";
Connection con = DriverManager.getConnection(url,"root", "");
And I am always getting this exception: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
There is no default password for the root, and I did not changed it. I can connect to the db from the mysql prompt with the same parameters. I added a new database and user from prompt, tried to connect with that user and pwd, and still get the access denied exception. Do somebody know what could be the problem?