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