Ver Mensaje Individual
  #7 (permalink)  
Antiguo 11/12/2012, 11:21
yamidvo
 
Fecha de Ingreso: junio-2012
Ubicación: colombia
Mensajes: 48
Antigüedad: 12 años, 7 meses
Puntos: 0
Respuesta: Error UPDATE mysql-java

Ya lo arregle!
he aqui el codigo por si alguien lo necesita:
Código java:
Ver original
  1. void actualizar(String ide){
  2.         ConexionMySQL mysql = new ConexionMySQL();
  3.         Connection cn = mysql.Conectar();
  4.         String sSQL = "";
  5.         String mensaje = "";
  6.        
  7.         sSQL = "UPDATE detalle " +
  8.                 "SET cantidad = ?" +
  9.                  "WHERE id_detalle = "+ide;
  10.         mensaje = "Se ha modificado!...";
  11.        
  12.         try
  13.         {
  14.             PreparedStatement pst = cn.prepareStatement(sSQL);
  15.             pst.setString(1, ModifCant.getText());
  16.  
  17.  
  18.             int n = pst.executeUpdate();
  19.  
  20.             if(n > 0)
  21.             {
  22.                 JOptionPane.showMessageDialog(null, mensaje);
  23.                 CargarTablaDetalle(factura);
  24.             }
  25.         }
  26.         catch (SQLException ex)
  27.         {
  28.             JOptionPane.showMessageDialog(null, ex);
  29.         }
  30.     }