Title here
Summary here
A DbDestination represents a database table where ingoing data from the flow is written into. Inserts are done in batches (using Bulk insert or an equivalent INSERT statement).
public class DbDestination : DbDestination<ExpandoObject>, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowBatchDestination, IDataFlowDestination, IDataFlowComponent, ILoggableTask
public DbDestination()
public DbDestination(IConnectionManager connectionManager, string tableName)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName |
public DbDestination(IConnectionManager connectionManager, string tableName, int batchSize)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName | |
int | batchSize |
public DbDestination(string tableName)
Type | Name | Description |
---|---|---|
string | tableName |
public DbDestination(string tableName, int batchSize)
Type | Name | Description |
---|---|---|
string | tableName | |
int | batchSize |