LexarG56

Generation

generate functionWed, 19 Jul 2023

En el actionperformed haga que un boton pueda eliminar un dato registrado de una base de datos

private static void eliminarActionPerformed(java.awt.event.ActionEvent evt) { String nombre = txtNombre.getText(); try { PreparedStatement pst = cn.prepareStatement("DELETE FROM clientes WHERE nombre='"+nombre+"'"); pst.executeUpdate(); mostrardatos(""); } catch (Exception e) { System.out.print(e.getMessage()); } }

Questions about programming?Chat with your personal AI assistant