首页 > 解决方案 > 我的删除按钮按钮不起作用无效光标状态 - 没有当前行

问题描述

删除按钮不起作用它说光标状态无效 - 没有当前行,源代码中没有错误是缺少代码为什么它不起作用?

private void DeleteActionPerformed(java.awt.event.ActionEvent evt) {                                       
    // TODO add your handling code here:
       try {
        int confirmed = JOptionPane.showConfirmDialog(null, "Are you 
   sure you want to delete the records?","Delete Button Message 
   Box",JOptionPane.YES_NO_OPTION);
        if(confirmed == JOptionPane.YES_OPTION)
        {
        JOptionPane.showMessageDialog(StockPage.this, "Record Deleted");
        rs.deleteRow();
        stmt.close();
        rs.close();
        stmt = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
        String sql = "SELECT * FROM STOCKNEW";
        rs = stmt.executeQuery(sql);
                   rs.next();
    int id_col = rs.getInt("ITEM");
    String id = Integer.toString(id_col);
    String description = rs.getString("DESCRIPTION");
    String amt = rs.getString("AMOUNT");

    update_table();
    TextItem.setText(id);
    TextDescription.setText(description);
    TextAmount.setText(amt);

    
        }else {
            JOptionPane.showMessageDialog(StockPage.this, "Records was not Deleted");
        }

        }
    catch(SQLException err) {
        JOptionPane.showMessageDialog(StockPage.this, err.getMessage());
    }
}                                      


}                                    

标签: derbynetbeans-8

解决方案


推荐阅读