En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int en una base de datos
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: try{ Connection cn = DriverManager.getConnection("jdbc:mysql://localhost/bd_prestamo", "root", ""); PreparedStatement pst = cn.prepareStatement("delete from tipos_prestamos where codigo_tipo_prestamo = ?"); pst.setString(1, txt_codigo.getText().trim()); pst.executeUpdate(); txt_codigo.setText(""); txt_descripcion.setText(""); JOptionPane.showMessageDialog(this, "REGISTRO ELIMINADO.", "Eliminado", JOptionPane.INFORMATION_MESSAGE); btnEliminar.setEnabled(false); txt_codigo.setEnabled(true); txt_descripc