Código:
private void BtoEliminarClientesActionPerformed(java.awt.event.ActionEvent evt) { int fila = TblTablaClientesRegistrados.getSelectedRow(); System.out.println(fila); if (fila >= 0) { acciones.getTablaListaClientes().removeRow(fila); } else { JOptionPane.showMessageDialog(null, "Seleccione algun cliente."); } int ID = (fila); System.out.println(fila); Conexion mysql = new Conexion(); Connection cn = mysql.conectar(); String sSql = "DELETE FROM fastfoodcompany WHERE ID = ?"; try { PreparedStatement pst = cn.prepareStatement(sSql); pst.setInt(1, ID); pst.execute(); } catch (SQLException ex) { JOptionPane.showMessageDialog(null, ex); }