public Boolean Actualizar(bool credencial = false) { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE Usuarios SET "; Sentencia += "Usuario = '" + _Usuario + "',"; if (credencial) { Sentencia += " Credencial = sha1('" + _Credencial + "'),"; } Sentencia += " IDEmpleado = " + _IDEmpleado + ", IDRol=" + _IDRol;; Sentencia += " WHERE IDUsuario=" + _IDUsuario + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE facturasdeventas SET "; Sentencia += "Fecha='" + _Fecha + "',"; Sentencia += "FormasDePago='" + _FormasDePago + "',"; Sentencia += "IDCliente='" + _IDCliente + "',"; Sentencia += "IDEmpleado='" + _IDEmpleado + "'"; Sentencia += "Excento='" + _Excento + "',"; Sentencia += "Gravado='" + _Gravado + "'"; Sentencia += "NoSujeto='" + _NoSujeto + "',"; Sentencia += "MontoDeIVA='" + _MontoDeIVA + "',"; Sentencia += "SubTotal='" + _SubTotal + "',"; Sentencia += "TotalAPagar='" + _TotalAPagar + "'"; Sentencia += "WHERE IDFacturaDeVenta=" + _IDFacturaDeVenta + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualzar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE Ejemplares SET "; Sentencia += "N_Ejemplar = '" + _N_Ejemplar + "',"; Sentencia += "Ubicacion = '" + _Ubicacion + "',"; Sentencia += "Fecha_Ingreso = '" + _Fecha_Ingreso + "',"; if (_Fecha_Salida != null) { Sentencia += "Fecha_Salida = '" + _Fecha_Salida + "',"; } else { Sentencia += "Fecha_Salida = null,"; } Sentencia += "Estado_Libro = '" + _Estado_Libro + "',"; Sentencia += "IDLibro = " + _IDLibro + ","; Sentencia += "IDEstado = " + IDEstado; Sentencia += " WHERE IDEjemplar =" + _IDEjemplar + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE detallesfaturas SET "; Sentencia += "Cantidad='" + Cantidad + "',"; Sentencia += "Precio='" + Precio + "',"; Sentencia += "NombreProducto='" + NombreProducto + "',"; Sentencia += "IDProducto='" + IDProducto + "'"; Sentencia += "IDFacturaDeVenta='" + IDFacturaDeVenta + "',"; Sentencia += "Exento='" + Exento + "'"; Sentencia += "Gravado='" + Gravado + "'"; Sentencia += "NoSujeto='" + NoSujeto + "'"; Sentencia += "WHERE IDDetallesFactura=" + IDDetallesFactura + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE empleados SET "; Sentencia += "Nombres='" + _Nombres + "',"; Sentencia += "Apellidos='" + _Apellidos + "',"; Sentencia += "Direccion='" + _Direccion + "',"; Sentencia += "Telefono='" + _Telefono + "',"; Sentencia += "FechaNacimiento='" + _FechaNacimiento + "',"; Sentencia += "Genero='" + _Genero + "',"; Sentencia += "DUI='" + _DUI + "',"; Sentencia += "Email='" + _Email + "',"; Sentencia += "Foto=@Imagen "; Sentencia += "WHERE IDEmpleado=" + _IDEmpleado + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia, _Foto) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualzar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE Libros SET "; Sentencia += "Titulo = '" + _Titulo + "',"; Sentencia += "Fecha_Lanzamiento = '" + _Fecha_Lanzamiento + "',"; Sentencia += "Paginas = '" + _Paginas + "',"; Sentencia += "Contenidos = '" + _Contenidos + "',"; Sentencia += "IDAutor = " + _IDAutor + ","; Sentencia += "IDEditorial = " + _IDEditorial + ","; Sentencia += "IDCategoria = " + _IDCategoria + ","; Sentencia += "Edicion = '" + _Edicion + "',"; Sentencia += "Portada= @Portada"; Sentencia += " WHERE IDLibro=" + _IDLibro + ";"; MySqlParameter param = new MySqlParameter("@Portada", MySqlDbType.MediumBlob); byte[] buffer = Functions.Class1.ImageToByteArray(_Portada); param.Size = buffer.Length; param.Value = buffer; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia, param) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualzar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE Empleados SET "; Sentencia += "Nombres = '" + _Nombres + "',"; Sentencia += "Apellidos = '" + _Apellidos + "',"; Sentencia += "FechaNacimiento = '" + _FechaNacimiento + "',"; Sentencia += "Genero='" + _Genero + "',"; Sentencia += "Foto= @Foto"; Sentencia += " WHERE IDEmpleado=" + _IDEmpleado + ";"; MySqlParameter param = new MySqlParameter("@Foto", MySqlDbType.MediumBlob); byte[] buffer = Functions.Class1.ImageToByteArray(_Foto); param.Size = buffer.Length; param.Value = buffer; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia, param) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Revocar() { Boolean Revocado = false; String Sentencia = String.Empty; Sentencia += "UPDATE Permisos"; Sentencia += " SET Mostrar=0"; Sentencia += " WHERE IDPermiso=" + _IDPermiso + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { Revocado = true; } } catch { } return(Revocado); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE roles SET "; Sentencia += "Rol='" + _Rol + "' "; Sentencia += "WHERE IDRol=" + _IDRol + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean ActualizarCN() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE usuarios SET "; Sentencia += "Usuario='" + _Usuario + "'," + "Credencial=SHA1('" + _Credencial + "')," + "IDEmpleado='" + _IDEmpleado + "'," + "IDRol='" + IDRol + "'"; Sentencia += "WHERE IDUsuario=" + _IDUsuario + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE productos SET "; Sentencia += "Nombre='" + _Nombre + "',Alias='" + _Alias + "',Codigo='" + _Codigo + "',Descripcion='" + _Descripcion + "',IDCategoria='" + _IDCategoria + "',PrecioDeVenta='" + _PrecioDeVenta.ToString().Replace(",", ".") + "',Costo='" + _Costo.ToString().Replace(",", ".") + "' "; Sentencia += "WHERE IDProducto=" + _IDProducto + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE empleados SET "; Sentencia += "Nombres='" + _Nombres + "'," + "Apellidos='" + _Apellidos + "'," + "FechaNacimiento='" + _FechaNacimiento + "'," + "Genero='" + _Genero + "' "; Sentencia += "WHERE IDEmpleado=" + _IDEmpleado + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE categorias SET "; Sentencia += "Nombre='" + _Nombre + "',"; Sentencia += "Descripcion='" + _Descripcion + "'"; Sentencia += "WHERE IDCategoria=" + _IDCategoria + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE opciones SET "; Sentencia += "Opcion='" + _Opcion + "',"; Sentencia += "Clasificacion='" + _Clasificacion + "'"; Sentencia += "WHERE IDOPcion=" + _IDOpcion + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE fotosempleados SET "; Sentencia += "IDEmpleado='" + _IDEmpleado + "',"; Sentencia += "Foto='" + _Foto + "'"; Sentencia += "Fecha='" + _Fecha + "'"; Sentencia += "WHERE IDFotoEmpleado=" + _IDFotoEmpleado + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }
public Boolean Actualizar() { Boolean ok = false; String Sentencia = String.Empty; Sentencia += "UPDATE clientes SET "; Sentencia += "Nombres='" + _Nombres + "',"; Sentencia += "Apellidos='" + _Apellidos + "',"; Sentencia += "Direccion='" + _Direccion + "',"; Sentencia += "Telefono='" + _Telefono + "'"; Sentencia += "WHERE IDCliente=" + _IDCliente + ";"; DataController.Operacion oOperacion = new DataController.Operacion(); try { if (oOperacion.Actualizar(Sentencia) > 0) { ok = true; } } catch { } return(ok); }