I want to connect to a MySQL database. While installing MySQL I did not give any password, so in my program I did the same but I am getting error on connection. I am using p
According to you, you are passing username as root and password as empty string.And your connection is established through
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/easylibdb1","root","");
So change your function as
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/easylibdb1","root",null);
Then it will work.
Or change the password in the application.properties
file as
password=