I want to connect to my MySQL database with Java.

I am using JDBC and I have the driver installed. (com.mysql.jdbc.Driver)

The only problem is that I keep getting an error:

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException The last packet sent successfully to the server was 0 milliseconds ago.

Here is my code:

Class.forName("com.mysql.jdbc.Driver");
Connection connection = DriverManager.getConnection("jdbc:mysql:/mydomain.com/mydatabase", "username", "password");

I am not positive how to compose the URL (and where I get my username and password) but I have done A LOT of research.

I am the only person with acess to my database and domain, so there's no use asking the admin.

I use phpMyAdmin to create the database(s) and manage them. Do I use my phpMyAdmin username and password or what?

By the way, my site is hosted on Yahoo! Small Business.

So my questions are:

  • How do I make the connection URL?
  • What is my username and password?
link|improve this question
1  
Was your question answered in the end? – speedRS Dec 5 '11 at 5:50
feedback

2 Answers

How do I make the connection URL?

Are you missing a forward slash in your URL? I would've assumed it would be something like:

jdbc:mysql://server/database
link|improve this answer
feedback

I would say you are missing a forward slash on your URL.

Connection connection = DriverManager.getConnection("jdbc:mysql://mydomain.com/mydatabase", "username", "password");

Or I have a feeling that there is something wrong with your access privileges. This same thing happened to me also and it was a problem of Firewall blocking the port on the server. So verify this is not the case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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