Mysql
 sql >> Database >  >> RDS >> Mysql

java.sql.SQLException:accesso negato per l'utente '[email protected]'@'localhost' (usando la password:YES)

Invece di utilizzare :

 String uname="[email protected]";

Usa :

String url="jdbc:mysql://localhost:3306/student";
String userName="root"
String password="Hsun123"
...
try{

        Class.forName("com.mysql.jdbc.Driver").newInstance();

        Connection con=DriverManager.getConnection(url,username,password);
...

Dovrebbe funzionare (a condizione che tu stia impostando una password valida)