- Timestamp:
- 06/26/09 12:18:32 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobResultsAdapter.cs
r2099 r2117 10 10 using System.Data.SqlClient; 11 11 using HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper; 12 using System.IO; 12 13 13 14 namespace HeuristicLab.Hive.Server.ADODataAccess { … … 152 153 } 153 154 155 public Stream GetSerializedJobResultStream(Guid jobResultId, bool useExistingConnection) { 156 return 157 ((JobResultsAdapterWrapper) 158 base.DataAdapterWrapper). 159 GetSerializedJobResultStream(jobResultId, useExistingConnection); 160 } 161 154 162 public void UpdateSerializedJobResult(SerializedJobResult jobResult) { 155 163 if (jobResult != null &&
Note: See TracChangeset
for help on using the changeset viewer.