我正在尝试将我的java应用程序与sql数据库连接,当我点击“保存”按钮时,它会出现以下错误
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
这是我的代码
name = full_name_input.getText();
Fname = father_name_input.getText();
cnic = father_cnic_input.getText();
DOB = Integer.parseInt(DOB_input.getText());
Class_V = Integer.parseInt(class_input.getText());
prsnt_add = present_add_input.getText();
city = city_input.getText();
province = radio_text;
Connection conn = null;
PreparedStatement pst = null;
try
{
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql:///UserDetails", "root", "sahanj");
pst = conn.prepareStatement("insert into UserDetails values (?,?,?,?,?,?,?,?)");
pst.setString(1, name);
pst.setString(2, Fname);
pst.setString(3, cnic);`enter code here`
pst.setInt(4, DOB);
pst.setInt(5, Class_V);
pst.setString(6, prsnt_add);
pst.setString(7, city);
pst.setString(8, province);
int x = pst.executeUpdate();
if (x>0)
{
JOptionPane.showMessageDialog(null, "Record Saved !\n");
}
else
{
JOptionPane.showMessageDialog(null, "Data Not Saved !\n");
}
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, e);
}
}
答案 0 :(得分:0)
由于以下原因,通常会发生此错误。 JDBC URL中的1.hostname不正确。 2.端口号不正确。 3.db服务器未启动。 对于这些采取以下步骤 1.给出完整的JDBC url或用ping测试。 2.检查my.cnf的mysql。 3.启动数据库。