我正在使用netbeans来构建我的应用程序,我正在尝试连接到我的数据库。我已经下载了jdbc文件并将其链接到我的文件。当我运行以下代码时,我得到以下失败...
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.
我在下面使用的代码。任何人都可以尝试找出为什么我得到这个错误,我觉得这是一个愚蠢的我想念但我从来没有遇到过这个问题。
import java.sql.DriverManager;
import java.sql.*;
public class LoginAttempt {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try{
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:8888/projectDB", "root", "");
Statement st = con.createStatement();
ResultSet rs = st.executeQuery("SELECT * FROM USERS");
while(rs.next()){
System.out.println(rs.getString(1));
System.out.println(rs.getString(1));
System.out.println("-------------------");
}
}catch(Exception e)
{
System.out.println(e.getMessage());
}
}