Class DbDestination
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).
Inheritance
object
DataFlowDestination<ExpandoObject>
DataFlowBatchDestination<ExpandoObject>
DbDestination<ExpandoObject>
DbDestination
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
public class DbDestination : DbDestination<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowBatchDestination, IDataFlowDestination, IDataFlowComponent
Constructors
DbDestination()
Declaration
public DbDestination()
DbDestination(IConnectionManager, string, int)
Declaration
public DbDestination(IConnectionManager connectionManager, string tableName, int batchSize)
Parameters
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName | |
int | batchSize |
DbDestination(IConnectionManager, string)
Declaration
public DbDestination(IConnectionManager connectionManager, string tableName)
Parameters
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName |
DbDestination(string, int)
Declaration
public DbDestination(string tableName, int batchSize)
Parameters
Type | Name | Description |
---|---|---|
string | tableName | |
int | batchSize |
DbDestination(string)
Declaration
public DbDestination(string tableName)
Parameters
Type | Name | Description |
---|---|---|
string | tableName |