Hallo Leute,
bin irgendwie Ratlos hoffe auf eure Hilfe
compiler sagt daraufhin "Unhandled exception Type SQLException". Dachte eigentlich das haette ich mit
ausgeknockt. also was tun, bin ratlos?
bin irgendwie Ratlos hoffe auf eure Hilfe
Code:
... sButton.addActionListener(new ActionListener() { public void actionPerformed( ActionEvent ev ) { dbSpeichern(); } } );
Code:
...
void dbSpeichern() throws SQLException{
ConnectDB cd = new ConnectDB();
ResultSet res;
String mensch;
res = cd.getResult("SELECT menschnummer FROM menschen WHERE Nachname = " + Mensch.getText());
mensch = res.getString("menschnummer");
textarea1.setText(mensch);
}
...
compiler sagt daraufhin "Unhandled exception Type SQLException". Dachte eigentlich das haette ich mit
Code:
...throws SQLEception{...