IDTSRuntimeComponent100.BufferManager Property

 

Applies To: SQL Server 2016 Preview

Sets the IDTSBufferManager100 of a pipeline component.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(22)]
IDTSBufferManager100 BufferManager {
    [DispIdAttribute(22)]
    set;
}
[DispIdAttribute(22)]
property IDTSBufferManager100^ BufferManager {
    [DispIdAttribute(22)]
    void set(IDTSBufferManager100^ value);
}
[<DispIdAttribute(22)>]
abstract BufferManager : IDTSBufferManager100 with set
<DispIdAttribute(22)>
WriteOnly Property BufferManager As IDTSBufferManager100

Property Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBufferManager100

The IDTSBufferManager100 object.

Remarks

The BufferManager is a read-only, run-time property that first becomes available to data flow components in the PreExecute method.

The FindColumnByLineageID method is used to locate the columns in the IDTSInputColumnCollection100 or IDTSOutputColumnCollection100 of the component, in the PipelineBuffer. This is necessary because the number of columns contained in the IDTSBuffer100 may exceed the number of columns expected by the component.

The BufferManager is also used to create new IDTSBuffer100 objects using the CreateBuffer, CreateFlatBuffer, and CreateVirtualBuffer methods.

See Also

IDTSRuntimeComponent100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top