我正在制作一个java swing项目,已经连接到我的数据库并将所有值调用到JTable中,当我点击Jtable中的一行并单击删除按钮时,我的框架中的值被删除,但我有一个错误,因为如果你试图删除一个值(例如,如果你删除数字1)并且jtable中有另一个相同的值(数字1)那么它们都将被删除
我认为问题在于此代码
public void mouseClicked(MouseEvent arg0) {
try {
int row = table.getSelectedRow();
String Description = (table.getModel().getValueAt(row, 1)).toString();
String query = "select * from PostNotice where Description='" + Description + "'";
PreparedStatement pst = connection.prepareStatement(query);
ResultSet rs = pst.executeQuery();
while (rs.next()) {
textArea.setText(rs.getString("Description"));
}
pst.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
这是删除
public void actionPerformed(ActionEvent e) {
String query = "Delete from PostNotice where Description =?";
try {
PreparedStatement pst = connection.prepareStatement(query);
pst.setString(1, textArea.getText());
pst.execute();
JOptionPane.showMessageDialog(null, "Post Deleted");
pst.close();
} catch (Exception ex)
{
ex.printStackTrace();
}
textArea.setText("");
textArea.requestFocus();
refreshtable();
}
});
答案 0 :(得分:1)
实际上你必须保持对ID(或其他主键)的引用,并按主键值删除记录。
对于您的代码,它意味着,例如Long id
课程'字段并将ID从DB存储到字段
textArea.setText(rs.getString("Description"));
id=rs.getLong("id");
然后您可以使用id
删除
String query = "Delete from PostNotice where id=?";
...
pst.setLong(1, id);