当用户在删除字段中输入错误的ID时,我想要弹出一个错误.但即使输入了错误的ID,查询仍会继续,但不会删除任何数据.这是我的代码:
String value = jTextField19.getText();
if (value == null || "".equals(value)) {
JOptionPane.showMessageDialog(null,"The field is blank!");
} else {
theQuery("DELETE FROM inventorydb WHERE item_id=('"+jTextField19.getText()+"') AND item_id IS NOT NULL");
}
theQuery方法:
private void theQuery(String query) {
Connection con = null;
Statement st = null;
try {
con = DriverManager.getConnection("jdbc:MysqL://localhost:3306/inventory","root","");
st = con.createStatement();
st.executeUpdate(query);
JOptionPane.showMessageDialog(null,"Done!");
} catch (Exception ex) {
JOptionPane.showMessageDialog(null,"Error!");
}
}
最佳答案
首先:不要直接从用户输入构建SQL查询,而是使用预处理语句.如果你不了解sql注入,你应该.
原文链接:https://www.f2er.com/mysql/433522.html如果您使用的是JDBC,则可以检查#executeUpdate()的结果以查看受影响的行数.如果它为零,那么你可以说它是一个错误的id.
这是方法定义:
public int executeUpdate(java.lang.String sql)
返回值为:
An
int
that indicates the number of rows affected,or0
if using a DDL statement.
在手头的程序中,您可以简单地执行此操作:
int deleted = st.executeUpdate(query);
if (deleted == 0) {
JOptionPane.showMessageDialog(null,"Nothing to delete!");
return;
}