Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 13:42:37 (15 years ago)
Author:
kgrading
Message:

fixed HiveBridge and removed compile errors (#830)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/JobDao.cs

    r3011 r3013  
    102102    public Stream GetSerializedJobStream(Guid jobId) {
    103103      HiveDataContext hdc = new HiveDataContext();
    104       hdc.Transaction = null;
    105 
     104      String ConnStr = hdc.Connection.ConnectionString;
     105      SqlConnection connection = new SqlConnection(hdc.Connection.ConnectionString);     
    106106      VarBinarySource source =
    107107        new VarBinarySource(
    108           hdc.Connection as SqlConnection, null,
     108          connection, null,
    109109          "Job", "SerializedJob", "JobId", jobId);
    110110
Note: See TracChangeset for help on using the changeset viewer.