/// <summary> /// Envia los cambios del twf_ProcesosTareasDataset.twf_ProcesosTareasDataTable a la base de datos. /// </summary> public static void Update(twf_ProcesosTareasDataset.twf_ProcesosTareasDataTable 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.twf_ProcesosTareas.Update(dataTable); }
public static void Update(twf_ProcesosTareasDataset.twf_ProcesosTareasDataTable dataTable, SqlTransaction trx) { SqlDataAdapter adapter = new SqlDataAdapter(); adapter.TableMappings.AddRange( new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "twf_ProcesosTareas", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdProceso", "IdProceso"), new System.Data.Common.DataColumnMapping("IdTarea", "IdTarea"), new System.Data.Common.DataColumnMapping("Orden", "Orden"), new System.Data.Common.DataColumnMapping("Descripcion", "Descripcion"), new System.Data.Common.DataColumnMapping("IdConexion", "IdConexion"), 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"), new System.Data.Common.DataColumnMapping("Observaciones", "Observaciones"), new System.Data.Common.DataColumnMapping("OrdenBR", "OrdenBR"), new System.Data.Common.DataColumnMapping("OrdenDA", "OrdenDA"), new System.Data.Common.DataColumnMapping("OrdenUI", "OrdenUI") } ) } ); SqlCommand sqlCommandUpdate = new SqlCommand("Pr_twf_ProcesosTareas_Update", trx.Connection); sqlCommandUpdate.Transaction = trx; sqlCommandUpdate.CommandType = CommandType.StoredProcedure; sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdProceso", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdProceso", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdTarea", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdTarea", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@Orden", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Orden", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@Descripcion", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Descripcion", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@IdConexion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdConexion", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@UltimaModificacion", SqlDbType.Binary, 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("@Observaciones", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Observaciones", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@OrdenBR", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenBR", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@OrdenDA", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenDA", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@OrdenUI", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenUI", DataRowVersion.Current, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@OldIdProceso", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdProceso", DataRowVersion.Original, null)); sqlCommandUpdate.Parameters.Add(new SqlParameter("@OldIdTarea", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdTarea", DataRowVersion.Original, null)); SqlCommand sqlCommandDelete = new SqlCommand("Pr_twf_ProcesosTareas_Delete", trx.Connection); sqlCommandDelete.Transaction = trx; sqlCommandDelete.CommandType = CommandType.StoredProcedure; sqlCommandDelete.Parameters.Add(new SqlParameter("@IdProceso", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdProceso", DataRowVersion.Original, null)); sqlCommandDelete.Parameters.Add(new SqlParameter("@IdTarea", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdTarea", 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_twf_ProcesosTareas_Insert", trx.Connection); sqlCommandInsert.Transaction = trx; sqlCommandInsert.CommandType = CommandType.StoredProcedure; sqlCommandInsert.Parameters.Add(new SqlParameter("@IdProceso", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdProceso", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@IdTarea", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdTarea", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@Orden", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Orden", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@Descripcion", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Descripcion", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@IdConexion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "IdConexion", 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)); sqlCommandInsert.Parameters.Add(new SqlParameter("@Observaciones", SqlDbType.VarChar, 256, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Observaciones", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@OrdenBR", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenBR", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@OrdenDA", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenDA", DataRowVersion.Current, null)); sqlCommandInsert.Parameters.Add(new SqlParameter("@OrdenUI", SqlDbType.Int, 0, ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OrdenUI", DataRowVersion.Current, null)); adapter.UpdateCommand = sqlCommandUpdate; adapter.DeleteCommand = sqlCommandDelete; adapter.InsertCommand = sqlCommandInsert; adapter.Update(dataTable); }