Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/10 17:20:46 (14 years ago)
Author:
kgrading
Message:

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

Location:
branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/HiveDataContext.cs

    r3931 r4140  
    19411941    private System.Nullable<double> _Percentage;
    19421942   
     1943    private string _Exception;
     1944   
    19431945    private System.Data.Linq.Link<System.Data.Linq.Binary> _SerializedJob;
    19441946   
     
    19851987    partial void OnPercentageChanging(System.Nullable<double> value);
    19861988    partial void OnPercentageChanged();
     1989    partial void OnExceptionChanging(string value);
     1990    partial void OnExceptionChanged();
    19871991    partial void OnSerializedJobChanging(System.Data.Linq.Binary value);
    19881992    partial void OnSerializedJobChanged();
     
    21242128    }
    21252129   
     2130    [Column(Storage="_Exception", DbType="VarChar(MAX)")]
     2131    public string Exception
     2132    {
     2133      get
     2134      {
     2135        return this._Exception;
     2136      }
     2137      set
     2138      {
     2139        if ((this._Exception != value))
     2140        {
     2141          this.OnExceptionChanging(value);
     2142          this.SendPropertyChanging();
     2143          this._Exception = value;
     2144          this.SendPropertyChanged("Exception");
     2145          this.OnExceptionChanged();
     2146        }
     2147      }
     2148    }
     2149   
    21262150    [Column(Storage="_SerializedJob", DbType="VarBinary(MAX)", UpdateCheck=UpdateCheck.Never)]
    21272151    public System.Data.Linq.Binary SerializedJob
  • branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/HiveDataContext.xml

    r3931 r4140  
    9999      <Column Name="ResourceId" Member="ResourceId" DbType="UniqueIdentifier" Type="System.Guid" CanBeNull="true"/>
    100100      <Column Name="Percentage" Member="Percentage" DbType="Float" Type="System.Double" CanBeNull="true"/>
     101      <Column Name="Exception" Member="Exception" DbType="VarChar(MAX)" Type="System.String" CanBeNull="true"/>
    101102      <Column Name="SerializedJob" Member="SerializedJob" DbType="VarBinary(MAX)" UpdateCheck="Never" Type="System.Data.Linq.Binary" IsDelayLoaded="true"/>
    102103      <Column Name="DateCreated" Member="DateCreated" DbType="DateTime" Type="System.DateTime" CanBeNull="true"/>
  • branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/JobDao.cs

    r3931 r4140  
    167167      target.DateFinished = source.DateFinished;
    168168      target.JobId = source.Id;
    169 
     169     
    170170      target.Percentage = source.Percentage;
     171      target.Exception = source.Exception;
    171172
    172173      target.Priority = source.Priority;
     
    195196      target.DateFinished = source.DateFinished;
    196197      target.Id = source.JobId;
    197        
     198
     199      target.Exception = source.Exception;
    198200      target.Percentage = source.Percentage;
    199201     
Note: See TracChangeset for help on using the changeset viewer.