Changeset 3013 for trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess
- Timestamp:
- 03/12/10 13:42:37 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/JobDao.cs
r3011 r3013 102 102 public Stream GetSerializedJobStream(Guid jobId) { 103 103 HiveDataContext hdc = new HiveDataContext(); 104 hdc.Transaction = null;105 104 String ConnStr = hdc.Connection.ConnectionString; 105 SqlConnection connection = new SqlConnection(hdc.Connection.ConnectionString); 106 106 VarBinarySource source = 107 107 new VarBinarySource( 108 hdc.Connection as SqlConnection, null,108 connection, null, 109 109 "Job", "SerializedJob", "JobId", jobId); 110 110
Note: See TracChangeset
for help on using the changeset viewer.