Я работаю над этим исходным кодом:
public class AuthentificationClient extends javax.swing.JFrame {
connexion maconn;
Statement stmt1;
public AuthentificationClient() {
initComponents();
}
private void numcompteActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
Bienvenue ret = new Bienvenue () ;
ret.setVisible(true);
this.dispose();
}
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
String requete ="Select * from Compte where numcompte='"+numcompte.getText()+"' and codec = '"+Arrays.toString(code.getPassword())+"'";
try {
Statement stmt1 = maconn.Obtenirconnexion().createStatement();
ResultSet rs= stmt1.executeQuery(requete);
} catch (SQLException ex) {
Logger.getLogger(AuthentificationPharmacien.class.getName()).log(Level.SEVERE, null, ex);
}
OpClient oc = new OpClient () ;
oc.setVisible(true);
this.dispose();
}
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new AuthentificationClient().setVisible(true);
}
});
}
Ошибок нет, но когда я выполняю, это работает неправильно! Это сообщение об ошибке, которое я получаю: