0
我試圖教程YouTube上 我的JFrame Java中創建的刪除按鈕,然後當我運行出現在JFrame的Java錯誤,爲什麼要刪除按鈕
private void btnDeleteActionPerformed(java.awt.event.ActionEvent evt) {
if (!jtextId.getText().equals(""))
{
try {
Connection con = getConnection();
PreparedStatement ps = con.prepareStatement("DELETE FROM product WHRRE id = ?");
int id=Integer.parseInt(jtextId.getText());
ps.setInt(1, id);
ps.executeUpdate();
JOptionPane.showMessageDialog(null, "Data Delete");
} catch (SQLException ex) {
Logger.getLogger(Main_Window.class.getName()).log(Level.SEVERE, null, ex);
JOptionPane.showMessageDialog(null, "Produt Not Deleted");
}
}
else{
JOptionPane.showMessageDialog(null, "Enter Product");
}
}
在輸出錯誤的錯誤是在ps.executeUpdate();
我應該修補什麼?
什麼是錯誤你得到了嗎? – Kai