Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to establish a connection to MySQL database but when I attempt to connect I get the error:

SQLException: Access denied for user 'test'@'localhost' (using password: NO) SQLState: 28000 VendorError: 1045

This is the Java program I am attempting to get the connection with and I am providing a password to the DriverManager.getConnection.

//import java.sql.Connection;

//import java.sql.DriverManager;

//import java.sql.SQLException; 

import java.sql.*;
//import com.mysql.jdbc.Driver;

public class jconnector_test{
   public static void main (String[] args) {

    try{
    Class.forName("com.mysql.jdbc.Driver");
    //DriverManager.registerDriver (new Driver()); 
    }
    catch(Exception x)
    {
    System.out.println("Unable to load the driver class!" + x);
    }

    Connection conn = null;

    String url = "jdbc:mysql://localhost/test";
    String user = "test";
    String password = "test";

    try {
    conn = DriverManager.getConnection(url, user, password);
    //do something with the Connection                                                  
    }
    catch (SQLException ex) {
    // handle any errors
    System.out.println("SQLException: " + ex.getMessage());
    System.out.println("SQLState: " + ex.getSQLState());
    System.out.println("VendorError: " + ex.getErrorCode());
    }
  }
}

SQLException: Access denied for user 'test'@'localhost' (using password: NO) SQLState: 28000 VendorError: 1045

share|improve this question

1 Answer

Not sure what your question is... but as indicated by the driver your credentials seem to be wrong! Try logging in to the database using console or GUI.

BTW: user max or test?

share|improve this answer
My question is why is it telling me no password is provided when I am providing a password? Also I can login using my console and GUI. – Maxinfet Jul 14 '11 at 16:01
btw thank you for the quick reply – Maxinfet Jul 14 '11 at 16:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.