Exemple #1
0
        /// <summary>
        /// Envia los cambios del sy_VariablesUsuariosDataset.sy_VariablesUsuariosDataTable a la base de datos.
        /// </summary>
        public static void Update(sy_VariablesUsuariosDataset.sy_VariablesUsuariosDataTable dataTable)
        {
            ApplicationAssert.Check(dataTable != null, "El argumento dataTable no debe ser nulo.", ApplicationAssert.LineNumber);
            ApplicationAssert.Check(dataTable.Rows.Count > 0, "El argumento dataTable debe poseer alguna fila.", ApplicationAssert.LineNumber);

            mz.erp.dataaccess.sy_VariablesUsuarios.Update(dataTable);
        }
        public static void Update(sy_VariablesUsuariosDataset.sy_VariablesUsuariosDataTable dataTable, SqlTransaction trx)
        {
            SqlDataAdapter adapter = new SqlDataAdapter();

            adapter.TableMappings.AddRange(
                new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "sy_VariablesUsuarios",
                                                        new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("IdVariable", "IdVariable"),
                    new System.Data.Common.DataColumnMapping("IdUsuario", "IdUsuario"),
                    new System.Data.Common.DataColumnMapping("Valor", "Valor"),
                    new System.Data.Common.DataColumnMapping("FechaCreacion", "FechaCreacion"),
                    new System.Data.Common.DataColumnMapping("IdConexionCreacion", "IdConexionCreacion"),
                    new System.Data.Common.DataColumnMapping("UltimaModificacion", "UltimaModificacion"),
                    new System.Data.Common.DataColumnMapping("IdConexionUltimaModificacion", "IdConexionUltimaModificacion"),
                    new System.Data.Common.DataColumnMapping("RowId", "RowId")
                }
                                                        )
            }
                );

            SqlCommand sqlCommandUpdate = new SqlCommand("Pr_sy_VariablesUsuarios_Update", trx.Connection);

            sqlCommandUpdate.Transaction = trx;
            sqlCommandUpdate.CommandType = CommandType.StoredProcedure;
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdVariable", SqlDbType.VarChar, 200, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdVariable", DataRowVersion.Current, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdUsuario", SqlDbType.VarChar, 20, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdUsuario", DataRowVersion.Current, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@Valor", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Valor", DataRowVersion.Current, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@UltimaModificacion", SqlDbType.Timestamp, 8, ParameterDirection.InputOutput, false, ((System.Byte)(0)), ((System.Byte)(0)), "UltimaModificacion", DataRowVersion.Current, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdConexionUltimaModificacion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdConexionUltimaModificacion", DataRowVersion.Current, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@OldIdVariable", SqlDbType.VarChar, 200, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdVariable", DataRowVersion.Original, null));
            sqlCommandUpdate.Parameters.Add(new SqlParameter("@OldIdUsuario", SqlDbType.VarChar, 20, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdUsuario", DataRowVersion.Original, null));

            SqlCommand sqlCommandDelete = new SqlCommand("Pr_sy_VariablesUsuarios_Delete", trx.Connection);

            sqlCommandDelete.Transaction = trx;
            sqlCommandDelete.CommandType = CommandType.StoredProcedure;
            sqlCommandDelete.Parameters.Add(new SqlParameter("@IdVariable", SqlDbType.VarChar, 200, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdVariable", DataRowVersion.Original, null));
            sqlCommandDelete.Parameters.Add(new SqlParameter("@IdUsuario", SqlDbType.VarChar, 20, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdUsuario", DataRowVersion.Original, null));
            sqlCommandDelete.Parameters.Add(new SqlParameter("@UltimaModificacion", SqlDbType.Timestamp, 8, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "UltimaModificacion", DataRowVersion.Original, null));

            SqlCommand sqlCommandInsert = new SqlCommand("Pr_sy_VariablesUsuarios_Insert", trx.Connection);

            sqlCommandInsert.Transaction = trx;
            sqlCommandInsert.CommandType = CommandType.StoredProcedure;
            sqlCommandInsert.Parameters.Add(new SqlParameter("@IdVariable", SqlDbType.VarChar, 200, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdVariable", DataRowVersion.Current, null));
            sqlCommandInsert.Parameters.Add(new SqlParameter("@IdUsuario", SqlDbType.VarChar, 20, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdUsuario", DataRowVersion.Current, null));
            sqlCommandInsert.Parameters.Add(new SqlParameter("@Valor", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Valor", DataRowVersion.Current, null));
            sqlCommandInsert.Parameters.Add(new SqlParameter("@FechaCreacion", SqlDbType.DateTime, 0, ParameterDirection.InputOutput, false, ((System.Byte)(0)), ((System.Byte)(0)), "FechaCreacion", DataRowVersion.Current, null));
            sqlCommandInsert.Parameters.Add(new SqlParameter("@IdConexionCreacion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdConexionCreacion", DataRowVersion.Current, null));

            adapter.UpdateCommand = sqlCommandUpdate;
            adapter.DeleteCommand = sqlCommandDelete;
            adapter.InsertCommand = sqlCommandInsert;
            adapter.Update(dataTable);
        }
Exemple #3
0
        public void Commit(sy_VariablesDataset Data, sy_VariablesUsuariosDataset DataUsuarios, sy_VariablesPerfilesDataset DataPerfiles, sy_VariablesPuestosDataset DataPuestos, string Valor, string Descripcion)
        {
            sy_VariablesDataset.sy_VariablesRow row = sy_Variables.GetByPk(this.IdVariable);
            if (row == null)
            {
                row                    = Data.sy_Variables.Newsy_VariablesRow();
                row.IdVariable         = IdVariable;
                row.IdTipoVariable     = "System.Boolean";
                row.Descripcion        = Descripcion;
                row.ValorDefault       = Valor;
                row.FechaCreacion      = DateTime.Now;
                row.IdConexionCreacion = Security.IdConexion;
                Data.sy_Variables.Addsy_VariablesRow(row);
            }
            else
            {
                row.ValorDefault = Valor;
                Data.sy_Variables.ImportRow(row);
            }

            sy_VariablesUsuariosDataset.sy_VariablesUsuariosDataTable tableVU = sy_VariablesUsuarios.GetList(this.IdVariable).sy_VariablesUsuarios;
            foreach (sy_VariablesUsuariosDataset.sy_VariablesUsuariosRow rowU in tableVU.Rows)
            {
                rowU.Valor = Valor;
                DataUsuarios.sy_VariablesUsuarios.ImportRow(rowU);
            }

            sy_VariablesPerfilesDataset.sy_VariablesPerfilesDataTable tableVP = sy_VariablesPerfiles.GetList(this.IdVariable).sy_VariablesPerfiles;
            foreach (sy_VariablesPerfilesDataset.sy_VariablesPerfilesRow rowP in tableVP.Rows)
            {
                rowP.Valor = Valor;
                DataPerfiles.sy_VariablesPerfiles.ImportRow(rowP);
            }

            sy_VariablesPuestosDataset.sy_VariablesPuestosDataTable tableVPU = sy_VariablesPuestos.GetList(this.IdVariable).sy_VariablesPuestos;
            foreach (sy_VariablesPuestosDataset.sy_VariablesPuestosRow rowPU in tableVPU.Rows)
            {
                rowPU.Valor = Valor;
                DataPuestos.sy_VariablesPuestos.ImportRow(rowPU);
            }
        }