- Timestamp:
- 06/03/13 15:18:12 (11 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml
r9557 r9571 230 230 <Column Name="TotalTransferTime" Type="System.Double" DbType="Float NOT NULL" CanBeNull="false" /> 231 231 <Column Name="NumCalculationRuns" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" /> 232 <Column Name="Num Fails" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" />232 <Column Name="NumRetries" Storage="_NumFails" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" /> 233 233 <Column Name="CoresRequired" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" /> 234 234 <Column Name="MemoryRequired" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" /> -
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
r9557 r9571 4908 4908 partial void OnNumCalculationRunsChanging(int value); 4909 4909 partial void OnNumCalculationRunsChanged(); 4910 partial void OnNum FailsChanging(int value);4911 partial void OnNum FailsChanged();4910 partial void OnNumRetriesChanging(int value); 4911 partial void OnNumRetriesChanged(); 4912 4912 partial void OnCoresRequiredChanging(int value); 4913 4913 partial void OnCoresRequiredChanged(); … … 5040 5040 5041 5041 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NumFails", DbType="Int NOT NULL")] 5042 public int Num Fails5042 public int NumRetries 5043 5043 { 5044 5044 get … … 5050 5050 if ((this._NumFails != value)) 5051 5051 { 5052 this.OnNum FailsChanging(value);5052 this.OnNumRetriesChanging(value); 5053 5053 this.SendPropertyChanging(); 5054 5054 this._NumFails = value; 5055 this.SendPropertyChanged("Num Fails");5056 this.OnNum FailsChanged();5055 this.SendPropertyChanged("NumRetries"); 5056 this.OnNumRetriesChanged(); 5057 5057 } 5058 5058 } -
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Initialize Hive Database.sql
r9557 r9571 258 258 [TotalTransferTime] FLOAT (53) NOT NULL, 259 259 [NumCalculationRuns] INT NOT NULL, 260 [Num Fails]INT NOT NULL,260 [NumRetries] INT NOT NULL, 261 261 [CoresRequired] INT NOT NULL, 262 262 [MemoryRequired] INT NOT NULL,
Note: See TracChangeset
for help on using the changeset viewer.