Пример #1
0
 public OleDbDestination(string name, string connectionName, string tableName)
 {
     base._prefix        = "OLE_DST - ";
     this.Name           = name;
     this.ConnectionName = connectionName;
     ExternalTableOutput = new ExternalTable(tableName);
 }
Пример #2
0
 public OleDbSource(string name, string connectionName, string tableName)
 {
     base._prefix        = "OLE_SRC - ";
     this.Name           = name;
     this.ConnectionName = connectionName;
     ExternalTableInput  = new ExternalTable(tableName);
 }