Boton Modificar
Publicado por Hector (63 intervenciones) el 05/01/2019 02:20:23
Hola amigos del foro, esta es mi primera consulta, por ende nuevo en java, estoy realizando un pequeño programa en netbeans, tengo problemas con el botón modificar, creo que esta bien, pero no marca ningún cambio favor de ayudarme este es el código que estoy utilizando.
no se en que estara fallando sino marca error, desde ya muchas gracias.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
private void cmdmodificarActionPerformed(java.awt.event.ActionEvent evt) {
try {
String Rut = txtrut.getText().trim();
Connection cn2 = DriverManager.getConnection("jdbc:mysql://localhost/gestion", "root", "");
PreparedStatement pst2 = cn2.prepareStatement("update proveedores Set Nombre_Proveedor = ?, Direccion_Proveedor = ?, Actividad_Proveedor = ?, Fax_Proveedor = ?, Comuna_Proveedor = ?, Ciudad_Proveedor = ?, Contacto_Proveedor = ?, Fono_Proveedor = ?, Mail_Proveedor = ? where Rut_Proveedor = " + Rut);
pst2.setString(1, txtnombre.getText().trim());
pst2.setString(2, txtdireccion.getText().trim());
pst2.setString(3, txtactividad.getText().trim());
pst2.setString(4, txtcelular.getText().trim());
pst2.setString(5, txtcomuna.getText().trim());
pst2.setString(6, txtciudad.getText().trim());
pst2.setString(7, txtcontacto.getText().trim());
pst2.setString(8, txtfono.getText().trim());
pst2.setString(9, txtmail.getText().trim());
pst2.executeUpdate();
JOptionPane.showMessageDialog(null, "Datos Modificados Satisfactoriamente");
txtnombre.setText("");
txtrut.setText("");
txtdireccion.setText("");
txtactividad.setText("");
txtcelular.setText("");
txtcomuna.setText("");
txtciudad.setText("");
txtcontacto.setText("");
txtfono.setText("");
txtmail.setText("");
bloqueo();
} catch (Exception e) {
}
}
Valora esta pregunta
0