Click here to Skip to main content
15,886,757 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,

I get this error when I want to connect to my database.

Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.


I use MySQL Workbench Eclipse and Apache.

My code is

Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection ("jdbc:mysql://127.0.0.1:3006/dblabor","root","root"); 
System.out.println("Connection successful");


Thanks in advance I hope someone can help.

What I have tried:

<pre>Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection ("jdbc:mysql://127.0.0.1:3006/dblabor","root","root"); 
System.out.println("Connection successful");
Posted
Updated 11-May-18 17:33pm
Comments
ThilinaMD 11-May-18 23:27pm    
try changing 127.0.0.1 to localhost. or i think you have entered incorrect port number (3006) instead of 3306 which assigned by default when mysql installs.(if you haven't changed it.)

1 solution

try this (assuming you have default port number for mysql).
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/dblabor","root","root"); 
System.out.println("Connection successful");
 
Share this answer
 
Comments
Member 13814158 13-May-18 8:40am    
Thank you! but then I get this exception
Access denied for user 'root'@'localhost' (using password: YES)
ThilinaMD 14-May-18 12:38pm    
so it says your mysql connection do not use a password. try providing null(empty) password from connection parametres. Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/dblabor","root","");
Member 13814158 15-May-18 4:58am    
perfect thank you
ThilinaMD 15-May-18 12:49pm    
welcome and happy coding!!!.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900