コード例 #1
0
 /// <summary>Loads a SubmissionType 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 SubmissionType Table.
     ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     string description = parameters["description"];
     object externalId0 = parameters["externalId0"].Value;
     object externalId1 = parameters["externalId1"].Value;
     string mnemonic = parameters["mnemonic"];
     int submissionTypeCode = parameters["submissionTypeCode"];
     // 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.SubmissionTypeRow submissionTypeRow = submissionTypeTable.FindBySubmissionTypeCode(submissionTypeCode);
     if ((submissionTypeRow == null))
     {
         // Call the internal 'Insert' method to complete the operation.
         MarkThree.Guardian.Core.SubmissionType.Insert(adoTransaction, sqlTransaction, ref rowVersion, description, externalId0, externalId1, mnemonic, submissionTypeCode);
     }
     else
     {
         // This will bypass the optimistic concurrency checking required by the internal method.
         rowVersion = ((long)(submissionTypeRow[submissionTypeTable.RowVersionColumn]));
         // Call the internal 'Update' method to complete the operation.
         MarkThree.Guardian.Core.SubmissionType.Update(adoTransaction, sqlTransaction, ref rowVersion, description, externalId0, externalId1, mnemonic, submissionTypeCode);
     }
     // Return values
     parameters["rowVersion"] = rowVersion;
 }
コード例 #2
0
ファイル: SubmissionType.cs プロジェクト: DonaldAirey/quasar
        /// <summary>Updates a SubmissionType 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="mnemonic">The value for the Mnemonic column.</param>
        /// <param name="submissionTypeCode">The value for the SubmissionTypeCode column.</param>
        public static void Update(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, ref long rowVersion, object description, object externalId0, object externalId1, object mnemonic, int submissionTypeCode)
        {
            // Accessor for the SubmissionType Table.
            ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
            // Rule #1: Make sure the record exists before updating it.
            ServerMarketData.SubmissionTypeRow submissionTypeRow = submissionTypeTable.FindBySubmissionTypeCode(submissionTypeCode);
            if ((submissionTypeRow == null))
            {
                throw new Exception(string.Format("The SubmissionType table does not have an element identified by {0}", submissionTypeCode));
            }
            // Rule #2: Optimistic Concurrency Check
            if ((submissionTypeRow.RowVersion != rowVersion))
            {
                throw new System.Exception("This record is busy.  Please try again later.");
            }
            // Apply Defaults
            if ((description == null))
            {
                description = submissionTypeRow[submissionTypeTable.DescriptionColumn];
            }
            if ((externalId0 == null))
            {
                externalId0 = submissionTypeRow[submissionTypeTable.ExternalId0Column];
            }
            if ((externalId1 == null))
            {
                externalId1 = submissionTypeRow[submissionTypeTable.ExternalId1Column];
            }
            if ((mnemonic == null))
            {
                mnemonic = submissionTypeRow[submissionTypeTable.MnemonicColumn];
            }
            // Increment the row version
            rowVersion = ServerMarketData.RowVersion.Increment();
            // Update the record in the ADO database.
            submissionTypeRow[submissionTypeTable.RowVersionColumn]  = rowVersion;
            submissionTypeRow[submissionTypeTable.DescriptionColumn] = description;
            submissionTypeRow[submissionTypeTable.ExternalId0Column] = externalId0;
            submissionTypeRow[submissionTypeTable.ExternalId1Column] = externalId1;
            submissionTypeRow[submissionTypeTable.MnemonicColumn]    = mnemonic;
            adoTransaction.DataRows.Add(submissionTypeRow);
            // Update the record in the SQL database.
            SqlCommand sqlCommand = new SqlCommand("update \"SubmissionType\" set \"RowVersion\"=@rowVersion,\"Description\"=@description,\"" +
                                                   "ExternalId0\"=@externalId0,\"ExternalId1\"=@externalId1,\"Mnemonic\"=@mnemonic where " +
                                                   "\"SubmissionTypeCode\"=@submissionTypeCode");

            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("@mnemonic", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, mnemonic));
            sqlCommand.Parameters.Add(new SqlParameter("@submissionTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, submissionTypeCode));
            // Update the record in the SQL database.
            sqlCommand.ExecuteNonQuery();
        }
コード例 #3
0
 /// <summary>Archives a SubmissionType 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 SubmissionType Table.
     ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     int submissionTypeCode = parameters["submissionTypeCode"];
     // 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.SubmissionTypeRow submissionTypeRow = submissionTypeTable.FindBySubmissionTypeCode(submissionTypeCode);
     rowVersion = ((long)(submissionTypeRow[submissionTypeTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.SubmissionType.Archive(adoTransaction, sqlTransaction, rowVersion, submissionTypeCode);
 }
コード例 #4
0
ファイル: SubmissionType.cs プロジェクト: DonaldAirey/quasar
        /// <summary>Inserts a SubmissionType 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="mnemonic">The value for the Mnemonic column.</param>
        /// <param name="submissionTypeCode">The value for the SubmissionTypeCode column.</param>
        public static void Insert(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, ref long rowVersion, string description, object externalId0, object externalId1, string mnemonic, int submissionTypeCode)
        {
            // Accessor for the SubmissionType Table.
            ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
            // Apply Defaults
            if ((externalId0 == null))
            {
                externalId0 = System.DBNull.Value;
            }
            if ((externalId1 == null))
            {
                externalId1 = System.DBNull.Value;
            }
            // Increment the row version
            rowVersion = ServerMarketData.RowVersion.Increment();
            // Insert the record into the ADO database.
            ServerMarketData.SubmissionTypeRow submissionTypeRow = submissionTypeTable.NewSubmissionTypeRow();
            submissionTypeRow[submissionTypeTable.RowVersionColumn]         = rowVersion;
            submissionTypeRow[submissionTypeTable.DescriptionColumn]        = description;
            submissionTypeRow[submissionTypeTable.ExternalId0Column]        = externalId0;
            submissionTypeRow[submissionTypeTable.ExternalId1Column]        = externalId1;
            submissionTypeRow[submissionTypeTable.MnemonicColumn]           = mnemonic;
            submissionTypeRow[submissionTypeTable.SubmissionTypeCodeColumn] = submissionTypeCode;
            submissionTypeTable.AddSubmissionTypeRow(submissionTypeRow);
            adoTransaction.DataRows.Add(submissionTypeRow);
            // Insert the record into the SQL database.
            SqlCommand sqlCommand = new SqlCommand("insert \"SubmissionType\" (\"rowVersion\",\"Description\",\"ExternalId0\",\"ExternalId1\",\"" +
                                                   "Mnemonic\",\"SubmissionTypeCode\") values (@rowVersion,@description,@externalId0,@e" +
                                                   "xternalId1,@mnemonic,@submissionTypeCode)");

            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("@mnemonic", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, mnemonic));
            sqlCommand.Parameters.Add(new SqlParameter("@submissionTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, submissionTypeCode));
            sqlCommand.ExecuteNonQuery();
        }
コード例 #5
0
 /// <summary>Updates a SubmissionType 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 SubmissionType Table.
     ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
     // 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 mnemonic = parameters["mnemonic"].Value;
     string externalSubmissionTypeCode = parameters["submissionTypeCode"];
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     int submissionTypeCode = SubmissionType.FindRequiredKey(configurationId, "submissionTypeCode", externalSubmissionTypeCode);
     // This will bypass the internal optimistic concurrency checking by providing the current rowVersion to the 
     // internal method.
     ServerMarketData.SubmissionTypeRow submissionTypeRow = submissionTypeTable.FindBySubmissionTypeCode(submissionTypeCode);
     rowVersion = ((long)(submissionTypeRow[submissionTypeTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.SubmissionType.Update(adoTransaction, sqlTransaction, ref rowVersion, description, null, null, mnemonic, submissionTypeCode);
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
コード例 #6
0
ファイル: SubmissionType.cs プロジェクト: DonaldAirey/quasar
        /// <summary>Archives a SubmissionType 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="submissionTypeCode">The value for the SubmissionTypeCode 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 submissionTypeCode)
        {
            // Accessor for the SubmissionType Table.
            ServerMarketData.SubmissionTypeDataTable submissionTypeTable = ServerMarketData.SubmissionType;
            // Rule #1: Make sure the record exists before updating it.
            ServerMarketData.SubmissionTypeRow submissionTypeRow = submissionTypeTable.FindBySubmissionTypeCode(submissionTypeCode);
            if ((submissionTypeRow == null))
            {
                throw new Exception(string.Format("The SubmissionType table does not have an element identified by {0}", submissionTypeCode));
            }
            // Rule #2: Optimistic Concurrency Check
            if ((submissionTypeRow.RowVersion != rowVersion))
            {
                throw new System.Exception("This record is busy.  Please try again later.");
            }
            // Archive the child records.
            for (int index = 0; (index < submissionTypeRow.GetWorkingOrderRows().Length); index = (index + 1))
            {
                ServerMarketData.WorkingOrderRow childWorkingOrderRow = submissionTypeRow.GetWorkingOrderRows()[index];
                WorkingOrder.Archive(adoTransaction, sqlTransaction, childWorkingOrderRow.RowVersion, childWorkingOrderRow.WorkingOrderId);
            }
            // Increment the row version
            rowVersion = ServerMarketData.RowVersion.Increment();
            // Delete the record in the ADO database.
            submissionTypeRow[submissionTypeTable.RowVersionColumn] = rowVersion;
            adoTransaction.DataRows.Add(submissionTypeRow);
            submissionTypeRow.Delete();
            // Archive the record in the SQL database.
            SqlCommand sqlCommand = new SqlCommand("update \"SubmissionType\" set \"IsArchived\" = 1 where \"SubmissionTypeCode\"=@submissi" +
                                                   "onTypeCode");

            sqlCommand.Connection  = sqlTransaction.Connection;
            sqlCommand.Transaction = sqlTransaction;
            sqlCommand.Parameters.Add(new SqlParameter("@submissionTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, submissionTypeCode));
            sqlCommand.ExecuteNonQuery();
        }