Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/14/09 16:05:26 (16 years ago)
Author:
svonolfe
Message:

Added execution engine facade (#465)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/dsHiveServer.Designer.cs

    r1092 r1120  
    24462446            private global::System.Data.DataColumn columnPercentage;
    24472447           
     2448            private global::System.Data.DataColumn columnSerializedJob;
     2449           
    24482450            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    24492451            public JobDataTable() {
     
    25192521           
    25202522            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     2523            public global::System.Data.DataColumn SerializedJobColumn {
     2524                get {
     2525                    return this.columnSerializedJob;
     2526                }
     2527            }
     2528           
     2529            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    25212530            [global::System.ComponentModel.Browsable(false)]
    25222531            public int Count {
     
    25472556           
    25482557            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    2549             public JobRow AddJobRow(long ParentJobId, HiveUserRow parentHiveUserRowByR_35, ClientRow parentClientRowByR_21, string JobState, double Percentage) {
     2558            public JobRow AddJobRow(long ParentJobId, HiveUserRow parentHiveUserRowByR_35, ClientRow parentClientRowByR_21, string JobState, double Percentage, byte[] SerializedJob) {
    25502559                JobRow rowJobRow = ((JobRow)(this.NewRow()));
    25512560                object[] columnValuesArray = new object[] {
     
    25552564                        null,
    25562565                        JobState,
    2557                         Percentage};
     2566                        Percentage,
     2567                        SerializedJob};
    25582568                if ((parentHiveUserRowByR_35 != null)) {
    25592569                    columnValuesArray[2] = parentHiveUserRowByR_35[0];
     
    25932603                this.columnJobState = base.Columns["JobState"];
    25942604                this.columnPercentage = base.Columns["Percentage"];
     2605                this.columnSerializedJob = base.Columns["SerializedJob"];
    25952606            }
    25962607           
     
    26092620                this.columnPercentage = new global::System.Data.DataColumn("Percentage", typeof(double), null, global::System.Data.MappingType.Element);
    26102621                base.Columns.Add(this.columnPercentage);
     2622                this.columnSerializedJob = new global::System.Data.DataColumn("SerializedJob", typeof(byte[]), null, global::System.Data.MappingType.Element);
     2623                base.Columns.Add(this.columnSerializedJob);
    26112624                this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
    26122625                                this.columnJobId}, true));
     
    39773990           
    39783991            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     3992            public byte[] SerializedJob {
     3993                get {
     3994                    try {
     3995                        return ((byte[])(this[this.tableJob.SerializedJobColumn]));
     3996                    }
     3997                    catch (global::System.InvalidCastException e) {
     3998                        throw new global::System.Data.StrongTypingException("The value for column \'SerializedJob\' in table \'Job\' is DBNull.", e);
     3999                    }
     4000                }
     4001                set {
     4002                    this[this.tableJob.SerializedJobColumn] = value;
     4003                }
     4004            }
     4005           
     4006            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    39794007            public ClientRow ClientRow {
    39804008                get {
     
    40444072            public void SetPercentageNull() {
    40454073                this[this.tableJob.PercentageColumn] = global::System.Convert.DBNull;
     4074            }
     4075           
     4076            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     4077            public bool IsSerializedJobNull() {
     4078                return this.IsNull(this.tableJob.SerializedJobColumn);
     4079            }
     4080           
     4081            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     4082            public void SetSerializedJobNull() {
     4083                this[this.tableJob.SerializedJobColumn] = global::System.Convert.DBNull;
    40464084            }
    40474085           
     
    74807518            tableMapping.ColumnMappings.Add("JobState", "JobState");
    74817519            tableMapping.ColumnMappings.Add("Percentage", "Percentage");
     7520            tableMapping.ColumnMappings.Add("SerializedJob", "SerializedJob");
    74827521            this._adapter.TableMappings.Add(tableMapping);
    74837522            this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
     
    74967535            this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
    74977536            this._adapter.InsertCommand.Connection = this.Connection;
    7498             this._adapter.InsertCommand.CommandText = @"INSERT INTO [Job] ([ParentJobId], [JobState], [PermissionOwnerId], [ResourceId]) VALUES (@ParentJobId, @JobState, @PermissionOwnerId, @ResourceId);
    7499 SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId FROM Job WHERE (JobId = SCOPE_IDENTITY())";
     7537            this._adapter.InsertCommand.CommandText = @"INSERT INTO [Job] ([ParentJobId], [JobState], [PermissionOwnerId], [ResourceId], [SerializedJob]) VALUES (@ParentJobId, @JobState, @PermissionOwnerId, @ResourceId, @SerializedJob);
     7538SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId, SerializedJob FROM Job WHERE (JobId = SCOPE_IDENTITY())";
    75007539            this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
    75017540            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ParentJobId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ParentJobId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
     
    75037542            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PermissionOwnerId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PermissionOwnerId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75047543            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ResourceId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ResourceId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
     7544            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SerializedJob", global::System.Data.SqlDbType.VarBinary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SerializedJob", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75057545            this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
    75067546            this._adapter.UpdateCommand.Connection = this.Connection;
    7507             this._adapter.UpdateCommand.CommandText = @"UPDATE [Job] SET [ParentJobId] = @ParentJobId, [JobState] = @JobState, [PermissionOwnerId] = @PermissionOwnerId, [ResourceId] = @ResourceId WHERE (([JobId] = @Original_JobId) AND ((@IsNull_ParentJobId = 1 AND [ParentJobId] IS NULL) OR ([ParentJobId] = @Original_ParentJobId)) AND ((@IsNull_JobState = 1 AND [JobState] IS NULL) OR ([JobState] = @Original_JobState)) AND ((@IsNull_PermissionOwnerId = 1 AND [PermissionOwnerId] IS NULL) OR ([PermissionOwnerId] = @Original_PermissionOwnerId)) AND ((@IsNull_ResourceId = 1 AND [ResourceId] IS NULL) OR ([ResourceId] = @Original_ResourceId)));
    7508 SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId FROM Job WHERE (JobId = @JobId)";
     7547            this._adapter.UpdateCommand.CommandText = @"UPDATE [Job] SET [ParentJobId] = @ParentJobId, [JobState] = @JobState, [PermissionOwnerId] = @PermissionOwnerId, [ResourceId] = @ResourceId, [SerializedJob] = @SerializedJob WHERE (([JobId] = @Original_JobId) AND ((@IsNull_ParentJobId = 1 AND [ParentJobId] IS NULL) OR ([ParentJobId] = @Original_ParentJobId)) AND ((@IsNull_JobState = 1 AND [JobState] IS NULL) OR ([JobState] = @Original_JobState)) AND ((@IsNull_PermissionOwnerId = 1 AND [PermissionOwnerId] IS NULL) OR ([PermissionOwnerId] = @Original_PermissionOwnerId)) AND ((@IsNull_ResourceId = 1 AND [ResourceId] IS NULL) OR ([ResourceId] = @Original_ResourceId)));
     7548SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId, SerializedJob FROM Job WHERE (JobId = @JobId)";
    75097549            this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
    75107550            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ParentJobId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ParentJobId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
     
    75127552            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PermissionOwnerId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PermissionOwnerId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75137553            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ResourceId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ResourceId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
     7554            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SerializedJob", global::System.Data.SqlDbType.VarBinary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SerializedJob", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75147555            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_JobId", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "JobId", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
    75157556            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ParentJobId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ParentJobId", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
     
    75357576            this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
    75367577            this._commandCollection[0].Connection = this.Connection;
    7537             this._commandCollection[0].CommandText = "SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId FROM Job";
     7578            this._commandCollection[0].CommandText = "SELECT JobId, ParentJobId, JobState, PermissionOwnerId, ResourceId, SerializedJob" +
     7579                " FROM Job";
    75387580            this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
    75397581            this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
    75407582            this._commandCollection[1].Connection = this.Connection;
    7541             this._commandCollection[1].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7542                 " (JobState <> \'offline\')";
     7583            this._commandCollection[1].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7584                " FROM Job WHERE (JobState <> \'offline\')";
    75437585            this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
    75447586            this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
    75457587            this._commandCollection[2].Connection = this.Connection;
    7546             this._commandCollection[2].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7547                 " (ResourceId = @ResourceId)";
     7588            this._commandCollection[2].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7589                " FROM Job WHERE (ResourceId = @ResourceId)";
    75487590            this._commandCollection[2].CommandType = global::System.Data.CommandType.Text;
    75497591            this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ResourceId", global::System.Data.SqlDbType.BigInt, 8, global::System.Data.ParameterDirection.Input, 0, 0, "ResourceId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75507592            this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
    75517593            this._commandCollection[3].Connection = this.Connection;
    7552             this._commandCollection[3].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7553                 " (JobId = @Id)";
     7594            this._commandCollection[3].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7595                " FROM Job WHERE (JobId = @Id)";
    75547596            this._commandCollection[3].CommandType = global::System.Data.CommandType.Text;
    75557597            this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Id", global::System.Data.SqlDbType.BigInt, 8, global::System.Data.ParameterDirection.Input, 0, 0, "JobId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75567598            this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
    75577599            this._commandCollection[4].Connection = this.Connection;
    7558             this._commandCollection[4].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7559                 " (JobState = @State)";
     7600            this._commandCollection[4].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7601                " FROM Job WHERE (JobState = @State)";
    75607602            this._commandCollection[4].CommandType = global::System.Data.CommandType.Text;
    75617603            this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@State", global::System.Data.SqlDbType.VarChar, 18, global::System.Data.ParameterDirection.Input, 0, 0, "JobState", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75627604            this._commandCollection[5] = new global::System.Data.SqlClient.SqlCommand();
    75637605            this._commandCollection[5].Connection = this.Connection;
    7564             this._commandCollection[5].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7565                 " (ParentJobId = @Id)";
     7606            this._commandCollection[5].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7607                " FROM Job WHERE (ParentJobId = @Id)";
    75667608            this._commandCollection[5].CommandType = global::System.Data.CommandType.Text;
    75677609            this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Id", global::System.Data.SqlDbType.BigInt, 8, global::System.Data.ParameterDirection.Input, 0, 0, "ParentJobId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
    75687610            this._commandCollection[6] = new global::System.Data.SqlClient.SqlCommand();
    75697611            this._commandCollection[6].Connection = this.Connection;
    7570             this._commandCollection[6].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId FROM Job WHERE" +
    7571                 " (PermissionOwnerId = @PermissionOwnerId)";
     7612            this._commandCollection[6].CommandText = "SELECT JobId, JobState, ParentJobId, PermissionOwnerId, ResourceId, SerializedJob" +
     7613                " FROM Job WHERE (PermissionOwnerId = @PermissionOwnerId)";
    75727614            this._commandCollection[6].CommandType = global::System.Data.CommandType.Text;
    75737615            this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PermissionOwnerId", global::System.Data.SqlDbType.BigInt, 8, global::System.Data.ParameterDirection.Input, 0, 0, "PermissionOwnerId", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
     
    78597901        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
    78607902        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
    7861         public virtual int Insert(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId) {
     7903        public virtual int Insert(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId, byte[] SerializedJob) {
    78627904            if ((ParentJobId.HasValue == true)) {
    78637905                this.Adapter.InsertCommand.Parameters[0].Value = ((long)(ParentJobId.Value));
     
    78837925            else {
    78847926                this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
     7927            }
     7928            if ((SerializedJob == null)) {
     7929                this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
     7930            }
     7931            else {
     7932                this.Adapter.InsertCommand.Parameters[4].Value = ((byte[])(SerializedJob));
    78857933            }
    78867934            global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
     
    79037951        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
    79047952        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
    7905         public virtual int Update(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId, long Original_JobId, global::System.Nullable<long> Original_ParentJobId, string Original_JobState, global::System.Nullable<long> Original_PermissionOwnerId, global::System.Nullable<long> Original_ResourceId, long JobId) {
     7953        public virtual int Update(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId, byte[] SerializedJob, long Original_JobId, global::System.Nullable<long> Original_ParentJobId, string Original_JobState, global::System.Nullable<long> Original_PermissionOwnerId, global::System.Nullable<long> Original_ResourceId, long JobId) {
    79067954            if ((ParentJobId.HasValue == true)) {
    79077955                this.Adapter.UpdateCommand.Parameters[0].Value = ((long)(ParentJobId.Value));
     
    79287976                this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
    79297977            }
    7930             this.Adapter.UpdateCommand.Parameters[4].Value = ((long)(Original_JobId));
     7978            if ((SerializedJob == null)) {
     7979                this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
     7980            }
     7981            else {
     7982                this.Adapter.UpdateCommand.Parameters[4].Value = ((byte[])(SerializedJob));
     7983            }
     7984            this.Adapter.UpdateCommand.Parameters[5].Value = ((long)(Original_JobId));
    79317985            if ((Original_ParentJobId.HasValue == true)) {
    7932                 this.Adapter.UpdateCommand.Parameters[5].Value = ((object)(0));
    7933                 this.Adapter.UpdateCommand.Parameters[6].Value = ((long)(Original_ParentJobId.Value));
     7986                this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(0));
     7987                this.Adapter.UpdateCommand.Parameters[7].Value = ((long)(Original_ParentJobId.Value));
    79347988            }
    79357989            else {
    7936                 this.Adapter.UpdateCommand.Parameters[5].Value = ((object)(1));
    7937                 this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
     7990                this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(1));
     7991                this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
    79387992            }
    79397993            if ((Original_JobState == null)) {
    7940                 this.Adapter.UpdateCommand.Parameters[7].Value = ((object)(1));
    7941                 this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
     7994                this.Adapter.UpdateCommand.Parameters[8].Value = ((object)(1));
     7995                this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
    79427996            }
    79437997            else {
    7944                 this.Adapter.UpdateCommand.Parameters[7].Value = ((object)(0));
    7945                 this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(Original_JobState));
     7998                this.Adapter.UpdateCommand.Parameters[8].Value = ((object)(0));
     7999                this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Original_JobState));
    79468000            }
    79478001            if ((Original_PermissionOwnerId.HasValue == true)) {
    7948                 this.Adapter.UpdateCommand.Parameters[9].Value = ((object)(0));
    7949                 this.Adapter.UpdateCommand.Parameters[10].Value = ((long)(Original_PermissionOwnerId.Value));
     8002                this.Adapter.UpdateCommand.Parameters[10].Value = ((object)(0));
     8003                this.Adapter.UpdateCommand.Parameters[11].Value = ((long)(Original_PermissionOwnerId.Value));
    79508004            }
    79518005            else {
    7952                 this.Adapter.UpdateCommand.Parameters[9].Value = ((object)(1));
    7953                 this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
     8006                this.Adapter.UpdateCommand.Parameters[10].Value = ((object)(1));
     8007                this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
    79548008            }
    79558009            if ((Original_ResourceId.HasValue == true)) {
    7956                 this.Adapter.UpdateCommand.Parameters[11].Value = ((object)(0));
    7957                 this.Adapter.UpdateCommand.Parameters[12].Value = ((long)(Original_ResourceId.Value));
     8010                this.Adapter.UpdateCommand.Parameters[12].Value = ((object)(0));
     8011                this.Adapter.UpdateCommand.Parameters[13].Value = ((long)(Original_ResourceId.Value));
    79588012            }
    79598013            else {
    7960                 this.Adapter.UpdateCommand.Parameters[11].Value = ((object)(1));
    7961                 this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value;
    7962             }
    7963             this.Adapter.UpdateCommand.Parameters[13].Value = ((long)(JobId));
     8014                this.Adapter.UpdateCommand.Parameters[12].Value = ((object)(1));
     8015                this.Adapter.UpdateCommand.Parameters[13].Value = global::System.DBNull.Value;
     8016            }
     8017            this.Adapter.UpdateCommand.Parameters[14].Value = ((long)(JobId));
    79648018            global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
    79658019            if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
     
    79818035        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
    79828036        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
    7983         public virtual int Update(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId, long Original_JobId, global::System.Nullable<long> Original_ParentJobId, string Original_JobState, global::System.Nullable<long> Original_PermissionOwnerId, global::System.Nullable<long> Original_ResourceId) {
    7984             return this.Update(ParentJobId, JobState, PermissionOwnerId, ResourceId, Original_JobId, Original_ParentJobId, Original_JobState, Original_PermissionOwnerId, Original_ResourceId, Original_JobId);
     8037        public virtual int Update(global::System.Nullable<long> ParentJobId, string JobState, global::System.Nullable<long> PermissionOwnerId, global::System.Nullable<long> ResourceId, byte[] SerializedJob, long Original_JobId, global::System.Nullable<long> Original_ParentJobId, string Original_JobState, global::System.Nullable<long> Original_PermissionOwnerId, global::System.Nullable<long> Original_ResourceId) {
     8038            return this.Update(ParentJobId, JobState, PermissionOwnerId, ResourceId, SerializedJob, Original_JobId, Original_ParentJobId, Original_JobState, Original_PermissionOwnerId, Original_ResourceId, Original_JobId);
    79858039        }
    79868040    }
Note: See TracChangeset for help on using the changeset viewer.