如何显示条目是否在数据库中?

How to show if a entry is in a database?

我目前正在制作一个程序,我可以在其中删除数据库中的某些条目。我可以做到,但我想添加一个 JOptionPane 屏幕,以便它可以找到或找不到它(因此当找不到名称时,不应找到它并显示一条消息说找不到)。我尝试使用结果语句,但这似乎不起作用。如果有人知道怎么做,请评论如何做!

private void btnDeleteActionPerformed(java.awt.event.ActionEvent evt) {                                          
    ArrayList<Cookbook  > recipes = new ArrayList();
    String name = txtName.getText();
    try {
        String url = "jdbc:derby://localhost:1527/Cookbook";
        Connection conn = DriverManager.getConnection(url);
        String query = "DELETE from RECIPES WHERE NAME = ?";
        PreparedStatement pst = conn.prepareStatement(query);
        pst.setString(1, name);
        pst.executeUpdate();




        JOptionPane.showMessageDialog(null, name + " was sucessfully deleted");
    } catch (Exception e) {
        JOptionPane.showMessageDialog(null, "was not found or could not be deleted");
    }

引用 executeUpdate() 的 javadoc:

Returns:

either (1) the row count for SQL Data Manipulation Language (DML) statements or (2) 0 for SQL statements that return nothing

所以:

String url = "jdbc:derby://localhost:1527/Cookbook";
try (Connection conn = DriverManager.getConnection(url)) {
    String query = "DELETE from RECIPES WHERE NAME = ?";
    try (PreparedStatement pst = conn.prepareStatement(query)) {
        pst.setString(1, name);
        int rowCount = pst.executeUpdate();
        if (rowCount == 0) {
            JOptionPane.showMessageDialog(null, "'" + name + "' was not found");
        } else if (rowCount == 1) {
            JOptionPane.showMessageDialog(null, "'" + name + "' was successfully deleted");
        } else { // cannot happen if `NAME` has unique index in the database
            JOptionPane.showMessageDialog(null, rowCount + " recipes named '" + name + "' were deleted");
        }
    }
} catch (Exception e) {
    JOptionPane.showMessageDialog(null, "something went wrong: " + e);
}