/// <summary>Loads a StylesheetType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Load(ParameterList parameters) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; object description = parameters["description"].Value; object externalId0 = parameters["externalId0"].Value; object externalId1 = parameters["externalId1"].Value; object name = parameters["name"].Value; int stylesheetTypeCode = parameters["stylesheetTypeCode"]; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // Find the record using the unique identifier. If it doesn't exist, it will be inserted, if it does exist, // it will be updated. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.FindByStylesheetTypeCode(stylesheetTypeCode); if ((stylesheetTypeRow == null)) { // Call the internal 'Insert' method to complete the operation. MarkThree.Guardian.Core.StylesheetType.Insert(adoTransaction, sqlTransaction, ref rowVersion, description, externalId0, externalId1, name, stylesheetTypeCode); } else { // This will bypass the optimistic concurrency checking required by the internal method. rowVersion = ((long)(stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn])); // Call the internal 'Update' method to complete the operation. MarkThree.Guardian.Core.StylesheetType.Update(adoTransaction, sqlTransaction, ref rowVersion, description, externalId0, externalId1, name, stylesheetTypeCode); } // Return values parameters["rowVersion"] = rowVersion; }
/// <summary>Updates a StylesheetType record.</summary> /// <param name="transaction">Commits or rejects a set of commands as a unit</param> /// <param name="rowVersion">The version number of the row</param> /// <param name="description">The value for the Description column.</param> /// <param name="externalId0">The value for the ExternalId0 column.</param> /// <param name="externalId1">The value for the ExternalId1 column.</param> /// <param name="name">The value for the Name column.</param> /// <param name="stylesheetTypeCode">The value for the StylesheetTypeCode column.</param> public static void Update(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, ref long rowVersion, object description, object externalId0, object externalId1, object name, int stylesheetTypeCode) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Rule #1: Make sure the record exists before updating it. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.FindByStylesheetTypeCode(stylesheetTypeCode); if ((stylesheetTypeRow == null)) { throw new Exception(string.Format("The StylesheetType table does not have an element identified by {0}", stylesheetTypeCode)); } // Rule #2: Optimistic Concurrency Check if ((stylesheetTypeRow.RowVersion != rowVersion)) { throw new System.Exception("This record is busy. Please try again later."); } // Apply Defaults if ((description == null)) { description = stylesheetTypeRow[stylesheetTypeTable.DescriptionColumn]; } if ((externalId0 == null)) { externalId0 = stylesheetTypeRow[stylesheetTypeTable.ExternalId0Column]; } if ((externalId1 == null)) { externalId1 = stylesheetTypeRow[stylesheetTypeTable.ExternalId1Column]; } if ((name == null)) { name = stylesheetTypeRow[stylesheetTypeTable.NameColumn]; } // Increment the row version rowVersion = ServerMarketData.RowVersion.Increment(); // Update the record in the ADO database. stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn] = rowVersion; stylesheetTypeRow[stylesheetTypeTable.DescriptionColumn] = description; stylesheetTypeRow[stylesheetTypeTable.ExternalId0Column] = externalId0; stylesheetTypeRow[stylesheetTypeTable.ExternalId1Column] = externalId1; stylesheetTypeRow[stylesheetTypeTable.NameColumn] = name; adoTransaction.DataRows.Add(stylesheetTypeRow); // Update the record in the SQL database. SqlCommand sqlCommand = new SqlCommand("update \"StylesheetType\" set \"RowVersion\"=@rowVersion,\"Description\"=@description,\"" + "ExternalId0\"=@externalId0,\"ExternalId1\"=@externalId1,\"Name\"=@name where \"Stylesh" + "eetTypeCode\"=@stylesheetTypeCode"); sqlCommand.Connection = sqlTransaction.Connection; sqlCommand.Transaction = sqlTransaction; sqlCommand.Parameters.Add(new SqlParameter("@rowVersion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, rowVersion)); sqlCommand.Parameters.Add(new SqlParameter("@description", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, description)); sqlCommand.Parameters.Add(new SqlParameter("@externalId0", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId0)); sqlCommand.Parameters.Add(new SqlParameter("@externalId1", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId1)); sqlCommand.Parameters.Add(new SqlParameter("@name", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, name)); sqlCommand.Parameters.Add(new SqlParameter("@stylesheetTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, stylesheetTypeCode)); // Update the record in the SQL database. sqlCommand.ExecuteNonQuery(); }
/// <summary>Inserts a StylesheetType record.</summary> /// <param name="transaction">Commits or rejects a set of commands as a unit</param> /// <param name="description">The value for the Description column.</param> /// <param name="externalId0">The value for the ExternalId0 column.</param> /// <param name="externalId1">The value for the ExternalId1 column.</param> /// <param name="name">The value for the Name column.</param> /// <param name="stylesheetTypeCode">The value for the StylesheetTypeCode column.</param> public static void Insert(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, ref long rowVersion, object description, object externalId0, object externalId1, object name, int stylesheetTypeCode) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Apply Defaults if ((description == null)) { description = System.DBNull.Value; } if ((externalId0 == null)) { externalId0 = System.DBNull.Value; } if ((externalId1 == null)) { externalId1 = System.DBNull.Value; } if ((name == null)) { name = System.DBNull.Value; } // Increment the row version rowVersion = ServerMarketData.RowVersion.Increment(); // Insert the record into the ADO database. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.NewStylesheetTypeRow(); stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn] = rowVersion; stylesheetTypeRow[stylesheetTypeTable.DescriptionColumn] = description; stylesheetTypeRow[stylesheetTypeTable.ExternalId0Column] = externalId0; stylesheetTypeRow[stylesheetTypeTable.ExternalId1Column] = externalId1; stylesheetTypeRow[stylesheetTypeTable.NameColumn] = name; stylesheetTypeRow[stylesheetTypeTable.StylesheetTypeCodeColumn] = stylesheetTypeCode; stylesheetTypeTable.AddStylesheetTypeRow(stylesheetTypeRow); adoTransaction.DataRows.Add(stylesheetTypeRow); // Insert the record into the SQL database. SqlCommand sqlCommand = new SqlCommand("insert \"StylesheetType\" (\"rowVersion\",\"Description\",\"ExternalId0\",\"ExternalId1\",\"" + "Name\",\"StylesheetTypeCode\") values (@rowVersion,@description,@externalId0,@exter" + "nalId1,@name,@stylesheetTypeCode)"); sqlCommand.Connection = sqlTransaction.Connection; sqlCommand.Transaction = sqlTransaction; sqlCommand.Parameters.Add(new SqlParameter("@rowVersion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, rowVersion)); sqlCommand.Parameters.Add(new SqlParameter("@description", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, description)); sqlCommand.Parameters.Add(new SqlParameter("@externalId0", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId0)); sqlCommand.Parameters.Add(new SqlParameter("@externalId1", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId1)); sqlCommand.Parameters.Add(new SqlParameter("@name", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, name)); sqlCommand.Parameters.Add(new SqlParameter("@stylesheetTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, stylesheetTypeCode)); sqlCommand.ExecuteNonQuery(); }
/// <summary>Archives a StylesheetType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Archive(ParameterList parameters) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; int stylesheetTypeCode = parameters["stylesheetTypeCode"]; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // While the optimistic concurrency checking is disabled for the external methods, the internal methods // still need to perform the check. This ncurrency checking logic by finding the current row version to be // will bypass the coused when the internal method is called. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.FindByStylesheetTypeCode(stylesheetTypeCode); rowVersion = ((long)(stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn])); // Call the internal method to complete the operation. MarkThree.Guardian.Core.StylesheetType.Archive(adoTransaction, sqlTransaction, rowVersion, stylesheetTypeCode); }
/// <summary>Archives a StylesheetType record.</summary> /// <param name="transaction">Commits or rejects a set of commands as a unit</param> /// <param name="RowVersion">The version number of this row.</param> /// <param name="stylesheetTypeCode">The value for the StylesheetTypeCode column.</param> /// <param name="archive">true to archive the object, false to unarchive it.</param> public static void Archive(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, long rowVersion, int stylesheetTypeCode) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Rule #1: Make sure the record exists before updating it. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.FindByStylesheetTypeCode(stylesheetTypeCode); if ((stylesheetTypeRow == null)) { throw new Exception(string.Format("The StylesheetType table does not have an element identified by {0}", stylesheetTypeCode)); } // Rule #2: Optimistic Concurrency Check if ((stylesheetTypeRow.RowVersion != rowVersion)) { throw new System.Exception("This record is busy. Please try again later."); } // Archive the child records. for (int index = 0; (index < stylesheetTypeRow.GetStylesheetRows().Length); index = (index + 1)) { ServerMarketData.StylesheetRow childStylesheetRow = stylesheetTypeRow.GetStylesheetRows()[index]; Stylesheet.Archive(adoTransaction, sqlTransaction, childStylesheetRow.RowVersion, childStylesheetRow.StylesheetId); } // Increment the row version rowVersion = ServerMarketData.RowVersion.Increment(); // Delete the record in the ADO database. stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn] = rowVersion; adoTransaction.DataRows.Add(stylesheetTypeRow); stylesheetTypeRow.Delete(); // Archive the record in the SQL database. SqlCommand sqlCommand = new SqlCommand("update \"StylesheetType\" set \"IsArchived\" = 1 where \"StylesheetTypeCode\"=@styleshe" + "etTypeCode"); sqlCommand.Connection = sqlTransaction.Connection; sqlCommand.Transaction = sqlTransaction; sqlCommand.Parameters.Add(new SqlParameter("@stylesheetTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, stylesheetTypeCode)); sqlCommand.ExecuteNonQuery(); }
/// <summary>Updates a StylesheetType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Update(ParameterList parameters) { // Accessor for the StylesheetType Table. ServerMarketData.StylesheetTypeDataTable stylesheetTypeTable = ServerMarketData.StylesheetType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; object description = parameters["description"].Value; object name = parameters["name"].Value; string externalStylesheetTypeCode = parameters["stylesheetTypeCode"]; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // Resolve External Identifiers int stylesheetTypeCode = StylesheetType.FindRequiredKey(configurationId, "stylesheetTypeCode", externalStylesheetTypeCode); // This will bypass the internal optimistic concurrency checking by providing the current rowVersion to the // internal method. ServerMarketData.StylesheetTypeRow stylesheetTypeRow = stylesheetTypeTable.FindByStylesheetTypeCode(stylesheetTypeCode); rowVersion = ((long)(stylesheetTypeRow[stylesheetTypeTable.RowVersionColumn])); // Call the internal method to complete the operation. MarkThree.Guardian.Core.StylesheetType.Update(adoTransaction, sqlTransaction, ref rowVersion, description, null, null, name, stylesheetTypeCode); // Return values. parameters["rowVersion"] = rowVersion; }