Title here
Summary here
A database source defines either a table or sql query that returns data from a database. Multiple database are supported. Use the corresponding connection manager that fits to your database.
public class DbSource : DbSource<ExpandoObject>, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent, ILoggableTask
SqlConnectionManager connMan = new SqlConnectionManager("Data Source=localhost");
DbSource<MyRow> source = new DbSource<MyRow>(connMan, "dbo.table");
public DbSource()
public DbSource(IConnectionManager connectionManager)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager |
public DbSource(IConnectionManager connectionManager, string tableName)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName |
public DbSource(string tableName)
Type | Name | Description |
---|---|---|
string | tableName |