DbSource<TOutput>
Class DbSource<TOutput>
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.
Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
Type Parameters
Name | Description |
---|---|
TOutput | Type of outgoing data. |
Examples
SqlConnectionManager connMan = new SqlConnectionManager("Data Source=localhost");
DbSource<MyRow> source = new DbSource<MyRow>(connMan, "dbo.table");
Constructors
DbSource()
Declaration
DbSource(IConnectionManager)
Declaration
Parameters
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | Sets the ConnectionManager |
DbSource(IConnectionManager, string)
Declaration
Parameters
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | Sets the ConnectionManager |
string | tableName | Sets the TableName |
DbSource(string)
Declaration
Parameters
Type | Name | Description |
---|---|---|
string | tableName | Sets the TableName |
Properties
BulkSelectBatchSize
The batch size used when retrieving data via BulkSelect as SelectMode.
Declaration
Property Value
Type | Description |
---|---|
int |
ColumnConverters
Use a column converter to apply custom conversion function to the data of a column.
Declaration
Property Value
Type | Description |
---|---|
ICollection<ColumnConverter> |
ColumnMapping
Column mapping to map column names to properties. E.g. if the value of column "Key" should be written into the property "Id", then you can simply add a column mapping: DbColumnName: "Key" -> PropertyName: "Id".
Declaration
Property Value
Type | Description |
---|---|
ICollection<DbColumnMap> |
ConnectionManager
The connection manager used to connect to the database - use the right connection manager for your database type.
Declaration
Property Value
Type | Description |
---|---|
IConnectionManager |
FilterRows
Applies only when SelectMode is set to BulkSelect. Rows that are used to identify records that you want to retrieve when using the BulkSelect mode. This setting has no affect when SelectMode is set to Default.
Declaration
Property Value
Type | Description |
---|---|
IEnumerable<TOutput> |
IdColumns
Applies only when SelectMode is set to BulkSelect. List of id columns that are used to select particular records from the source. If the value of a id column matchs with the value in the corresponding property, the record will be read from the source.
Declaration
Property Value
Type | Description |
---|---|
ICollection<IdColumn> |
SelectColumns
Applies only when SelectMode is set to BulkSelect. List of all properties that you would like to have populated with data from the source - by default, all properties that are matching with a database column are retrieved from the database (for dynamic objects and arrays all columns are loaded). If a column has a different name than your properties, you can use the DbColumnMap to add a mapping between property and column names.
Declaration
Property Value
Type | Description |
---|---|
ICollection<SelectColumn> |
SelectMode
The default select mode retrieves all data from either a table (determined by the TableName or from a Sql statement. If you have a list of objects that you would like to use as a filter when retrieving data, set the SelectMode to BulkSelect. Now you can define IdColumns and FilterRows to select only particular rows.
Declaration
Property Value
Type | Description |
---|---|
SelectOperation |
Sql
A custom sql query to extract the data from the source.
Declaration
Property Value
Type | Description |
---|---|
string |
SqlParameter
List of query parameters that are used to replace values in Sql For every parameter provided, your sql statement should contain a placeholder. E.g.: 'SELECT col1 FROM table WHERE col2 > @parameter1'
Declaration
Property Value
Type | Description |
---|---|
IEnumerable<QueryParameter> |
TableDefinition
Pass a table definition that describe the source data. Only the column name needs to be provided - you can leave out other information. If you provide the TableName, ETLBox will try to read the table definition directly from the database. If you provide your own TableDefinition, this will always be used. If you provide a Sql statement, ETLBox will try to automatically read the column names from the sql query. Sometimes the automatic parsing from the query doesn't work. Then you can provide a TableDefinition which contains the column names in the same order as they appear in the sql statement.
Declaration
Property Value
Type | Description |
---|---|
TableDefinition |
TableName
The name of the database table to read data from.
Declaration
Property Value
Type | Description |
---|---|
string |
Methods
CheckParameter()
Declaration
Overrides
CleanUpOnFaulted(Exception)
Declaration
Parameters
Type | Name | Description |
---|---|---|
Exception | e |