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 connect to my database but my try/catch keeps on receiving an error. This is my first time trying to connect with JDBC. I am not sure what I am doing wrong as I was just following a tutorial.

Code:

import java.sql.*;


public class jdbc {

    public static void main (String[] args)
    {
        Connection conn = null;

        try
        {
            String userName = "root";
            String password = "";
            String url = "jdbc:mysql://localhost:3306/apple";
            Class.forName ("com.mysql.jdbc.Driver").newInstance ();
            conn = DriverManager.getConnection (url, userName, password);
            System.out.println ("Database connection established");
        }
        catch (Exception e)
        {
            System.err.println ("Cannot connect to database server");
        }
        finally
        {
            if (conn != null)
            {
                try
                {
                    conn.close ();
                    System.out.println ("Database connection terminated");
                }
                catch (Exception e) { /* ignore close errors */ }
            }
        }
    }
}

http://img833.imageshack.us/img833/604/databaseproblem.jpg

share|improve this question
1  
Add e.printStackTrace() to your catch block. That will make it easier to debug the issue. – Eric Rosenberg Nov 19 '11 at 4:26
6  
You'll never find out until you post the exception's own message stack trace. Never substitute your own message: always print or log the actual exception class and message and in severe cases the stack trace. – EJP Nov 19 '11 at 4:27
can you post your stacktrace? – Aditya Naidu Nov 19 '11 at 4:30

2 Answers

To obtain a proper stacktrace, remove the first catch block in your method:

public static void main(String[] args) throws Exception {
    Connection conn = null;
    try {
        String userName = "root";
        String password = "";
        String url = "jdbc:mysql://localhost:3306/apple";
        Class.forName("com.mysql.jdbc.Driver").newInstance();
        conn = DriverManager.getConnection(url, userName, password);
        System.out.println("Database connection established");
    } finally {
        if (conn != null) {
            try {
                conn.close();
                System.out.println("Database connection terminated");
            } catch (Exception e) { /* ignore close errors */ }
        }
    }
}

Then you will find out the nature of the error. You will also need to ensure the mysql-connector.jar is on your classpath. This jar contains the com.mysql.jdbc.Driver class you are using to connect.

share|improve this answer

After looking above code which is correct, it seems that there are number of possibilties for exception.

  1. Check mysql driver jar is available in build/class path.
  2. Check mysql has been installed correctly.
  3. Check mysql username/password.
  4. Check mysql port.
share|improve this answer

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.