当我尝试像删除或插入一样进行crud操作时,我第一次点击按钮时,出现连接错误(错误消息来自连接函数):
public static void ConnexionDB(String sql){
Statement stmt = null;
try{
Class.forName("com.mysql.jdbc.Driver");
Connection connect = (Connection) DriverManager.getConnection("jdbc:mysql://localhost/jeux?user=root&password=root");
stmt = (Statement) connect.createStatement();
stmt.execute(sql);
}
catch(Exception e){
System.out.println("connection error");
}
}
但是当我在按钮上单击一次时操作成功,我连接到DB而没有错误消息。 我无法找到问题!