コードは次のとおりです。
int value = JOptionPane.showConfirmDialog(Delete_Panel, "Delete Record of '"+rs.getString("Name")+"'", "Delete Now", JOptionPane.YES_NO_OPTION);
それは何もしません..しかし、それを削除するrs.getString("Name")
と完全に機能しますが、確認ダイアログでms accessからその名前を表示したいので、yes noオプションに従って、さらにコードを実行します。
完全なソースコードは次のとおりです。
String input = txtDelete.getText();
Connection connection;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
connection = DriverManager.getConnection("jdbc:odbc:NewPData");
Statement st = connection.createStatement();
ResultSet rs = st.executeQuery("select ID from Table1 where ID=" + input);
if (!rs.next()) {
JOptionPane.showMessageDialog(Delete_Panel, "ID does not exist");
} else {
// int value = JOptionPane.showConfirmDialog(Delete_Panel, "Delete Record of '"+rs.getString("Name")+"'", "Delete Now", JOptionPane.YES_NO_OPTION);
st.executeUpdate("delete from Table1 where ID=" + input);
JOptionPane.showMessageDialog(Delete_Panel, "Record is Deleted");
connection.close();
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
}
}