Luego de modificar este método modificar en ProductoController:
public int modificar(String nombre, String descripcion, Integer cantidad, Integer id) throws SQLException {
ConnectionFactory factory = new ConnectionFactory();
Connection con = factory.recuperaConexion();
PreparedStatement statement = con
.prepareStatement("UPDATE PRODUCTO SET "
+ " NOMBRE = ?, "
+ " DESCRIPCION = ?,"
+ " CANTIDAD = ?"
+ " WHERE ID = ?");
statement.setString(1, nombre);
statement.setString(2, descripcion);
statement.setInt(3, cantidad);
statement.setInt(4, id);
statement.execute();
int updateCount = statement.getUpdateCount();
con.close();
return updateCount;
}
Me aparece lo siguiente en ControlStockFrame:
A alguien le sucedio lo mismo? como lo soluciono? Muchas gracias!