从jList数据库中删除记录的问题



你好,我有一个问题。谁能给我一个片段?我有MySql的表,显示JList项目,所以我可以很容易地添加项目,但不能从数据库中删除?按"移除项目?"

我搜索了很多没有人曾经需要做的事情。我想知道这怎么可能?
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                             
     try {
         Class.forName("com.mysql.jdbc.Driver");  
         Connection con= (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","ubuntu123");   
         PreparedStatement stmt = null;
         ResultSet rs =  null;
         String [] data;
         data = new String[100];
         int i=0;
         DefaultListModel listmodel = (DefaultListModel) jList2.getModel();
         int selectedIndex = jList2.getSelectedIndex();
         if (selectedIndex != -1) {
             listmodel.remove(selectedIndex);
             String query = "delete from supplierinfo where companyname = ?";
             stmt = (PreparedStatement) con.prepareStatement(query);
             stmt.setInt(1, i);
             stmt.execute();
             con.close();
             // i= i+1;
         }
    } catch(Exception e) {
        System.out.println("3rd catch " +e);
    }
}                                        

当您从ListModel中删除某个元素时,可以将其保存在变量中。

之后,您可以获得关于该项的所有重要信息,并在查询中使用它。

像这样使用:

YourObjectType obj = (YourObjectType) listmodel.remove(selectedIndex);

String query = "delete from supplierinfo where companyname = ?";
                    stmt = (PreparedStatement) con.prepareStatement(query);
                    stmt.setInt(1, obj.getCompanyName());
                    stmt.execute();

对当前选定的索引使用ListModel#getElementAt(int)方法。

如果您确定您的模型只包含String实例,您可以直接将其转换为String,然后将stmt.setInt(1, i);

中的i替换为该字符串。

相关内容

  • 没有找到相关文章

最新更新