コード例 #1
0
 public SourceFileReader(PipeLineContext c, ConcurrentQueue <List <string> > rows)
 {
     RowsCollection = rows;
     Context        = c;
 }
コード例 #2
0
ファイル: COMLoader.cs プロジェクト: MisterMackey/SsisIsSuck
 public COMLoader()
 {
     Context = new PipeLineContext();
 }
コード例 #3
0
 public DestinationTableCreator(PipeLineContext c)
 {
     Context = c;
 }
コード例 #4
0
 public DataTypeSuggester(PipeLineContext c)
 {
     Context = c;
     this.ColumnCollection = new ConcurrentBag <ConcurrentStack <string> >();
 }
コード例 #5
0
ファイル: Inserter.cs プロジェクト: MisterMackey/SsisIsSuck
 public Inserter(PipeLineContext context, ConcurrentQueue <List <string> > RowsCollection)
 {
     this.context        = context;
     this.RowsCollection = RowsCollection;
     done = false;
 }