Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/01/08 14:43:10 (16 years ago)
Author:
gkronber
Message:

worked on #211 (Full operator-graphs are stored multiple times in the database even though most of it is static anyway)

  • created a new type of operator library that is connected to the CEDMA db and a view for it
Location:
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IDatabase.cs

    r416 r417  
    4949
    5050    [OperationContract]
    51     long InsertOperator(string name, string rawData);
     51    long InsertOperator(string name, byte[] rawData);
     52
     53    [OperationContract]
     54    void UpdateOperator(long id, string name, byte[] rawData);
     55
     56    [OperationContract]
     57    void DeleteOperator(long id);
    5258
    5359    // should be replaced by more powerful querying interface (LINQ provider?)
  • trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/OperatorEntry.cs

    r416 r417  
    3535    public string Name { get; set; }
    3636    [DataMember]
    37     public string RawData { get; set; }
     37    public byte[] RawData { get; set; }
    3838  }
    3939}
Note: See TracChangeset for help on using the changeset viewer.