コード例 #1
0
 public OLEDBSource(string name, OLEDBSourceProperties properties)
     : this()
 {
     this.Name        = name;
     this.Description = name;
     this.Properties  = properties;
 }
コード例 #2
0
        public void OLEDBSource(LibCF.DataFlow dataFlow, LibDF.OutputWrapper output, Lib.OLEDBConnectionManager connection)
        {
            var srcprops = new LibDF.OLEDBSourceProperties(connection)
                           .SetSqlCommand("Some SQL");

            LibDF.OLEDBSource source = new LibDF.OLEDBSource(
                "Source Name",
                srcprops)
                                       .AddComponent(dataFlow);
        }