Example #1
0
 public TInfoRecord(TInfoRecord clone, EDbObjectType dbObjectType)
 {
     this.fileName       = clone.fileName;
     this.SPName_Renamed = clone.SPName_Renamed;
     this.table          = clone.table;
     this.column         = clone.column;
     this.dbObjectType   = dbObjectType;
 }
Example #2
0
 public TInfoRecord(TTable table)
 {
     this.table        = table;
     this.dbObjectType = EDbObjectType.table;
 }
Example #3
0
 public TInfoRecord(EDbObjectType dbObjectType)
 {
     this.dbObjectType = dbObjectType;
 }