java - 如何从jTable中删除数据库中的数据?

标签 java sql swing jtable sql-delete

我想从jtable中删除数据库中的数据。我有 1 个 jTextField 和 1 个 jButton。因此,当我单击表中的选定行时,主键不会在我的 jTextField 中设置。

是否可以从jtable中删除数据库中的数据,而无需jTextField,只需一个按钮?

这是我的代码

try {
    int row = table.getSelectedRow();

    String id_ = (table.getModel().getValueAt(row, 1)).toString();

    String sql ="SELECT id FROM 'mycredentials.sales' WHERE id= "+id_+"'";
    connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mycredentials?autoReconnect=true&useSSL=false", username, password);
    PreparedStatement pst = (PreparedStatement) connection.prepareStatement(sql);
    ResultSet rs = pst.executeQuery();

    while (rs.next()) {
        jFrame_removeP.setText(rs.getString("id"));
    }
} catch (SQLException e1) {
    System.err.println(e1);
}

随机 ID 号出现在我的 jTextField 中。我的表代码是:

 String name = jFrame_pName.getText().trim();
 String price = jFrame_pPrice.getText().trim();
 String quantity = jFrame_quantity.getText().trim();
 String total = jFrame_total.getText().trim();
 String st[] = {name, price, quantity, total};
 model.addRow(st);
 jFrame_gTotal.setText(Integer.toString(getSum())); 

 try {
        connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mycredentials?autoReconnect=true&useSSL=false", username, password);
        Statement s = (Statement) connection.createStatement();
        String sql = "INSERT INTO mycredentials.sales (name, price, quantity, total) VALUES ('"+jFrame_pName.getText()+"', '" + jFrame_pPrice.getText() + "','"+jFrame_quantity.getText()+"','"+jFrame_total.getText()+"')";

        s.executeUpdate(sql);

    } catch (SQLException e1) {
        System.err.println(e1);
    }

我的删除按钮是:

DefaultTableModel model1 = (DefaultTableModel) table_1.getModel();

int selectedRowIndex = table_1.getSelectedRow();
model1.removeRow(selectedRowIndex);

try {
    connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mycredentials?autoReconnect=true&useSSL=false", username, password);
    Statement ps = (Statement) connection.createStatement();

    String sql = "DELETE from mycredentials.sales where id ='" + jFrame_removeP.getText() + "'";
    ps.executeUpdate(sql);

} catch (Exception ex) {
    System.err.println(ex);
}

最佳答案

你的意思是这样吗?我没有得到你真正需要的东西。希望这会有所帮助。

private void deleteBtnActionPerformed(java.awt.event.ActionEvent evt) {                                          
    
    String deleteQuery = "DELETE FROM SAMPLE WHERE USER_ID = ?";
    
    try (Connection myCon = DBUtilities.getConnection(DBType.JDBC);
        PreparedStatement myPs = myCon.prepareStatement(deleteQuery);){
        
            myPs.setInt(1,userID);

            myPs.executeUpdate();

            JOptionPane.showMessageDialog(null,"Records deleted");
}//end of try 
    catch (SQLException ex) {
        DBUtilities.processException(ex);
}//end of catch
}

enter image description here

搜索一条记录后。您只需单击 Jtable 中要删除的记录即可。只需简单地点击删除按钮即可。

enter image description here

如果您想删除所选行,只需在此处使用刷新方法即可。如果您使用Prepared Statement 比使用Statement 来避免SQL 注入(inject),可以更好地修复您的语句。

关于java - 如何从jTable中删除数据库中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36274763/

相关文章:

java - setContentView() 与 GLSurfaceView 一起使用时崩溃

SQL Datepart Where 子句不起作用

java - 动态更新 JFrame 的问题

java - JTable JComboBox 默认在列表展开时显示第一项

java - Swing:灰色多行JCheckBox?

java - 如何创建字符串变量的克隆?

java - 如何在 Akka Java 中使用 Patterns.askWithReplyTo

sql - COUNT(*)FILTER(WHERE ...在BigQuery中

mysql - 具有相同唯一列的表的主键或外键

javascript - 未存储 JSESSIONID cookie