IDTSRuntimeComponent90.PrimeOutput Method

Called during package execution for components that add rows to the IDTSBuffer90; including source components and transformation components with asynchronous IDTSOutput90 objects. The developer needs to supply the code that adds the rows to the output buffers.

네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)

구문

‘선언
<DispIdAttribute(14)> _
Sub PrimeOutput ( _
    <InAttribute> lOutputs As Integer, _
    <InAttribute> ByRef lOutputIDs As Integer, _
    <InAttribute> ByRef pIDTSBufferOutputs As IDTSBuffer90 _
)
[DispIdAttribute(14)] 
void PrimeOutput (
    [InAttribute] int lOutputs,
    [InAttribute] ref int lOutputIDs,
    [InAttribute] ref IDTSBuffer90 pIDTSBufferOutputs
)
[DispIdAttribute(14)] 
void PrimeOutput (
    [InAttribute] int lOutputs, 
    [InAttribute] int% lOutputIDs, 
    [InAttribute] IDTSBuffer90^% pIDTSBufferOutputs
)
/** @attribute DispIdAttribute(14) */ 
void PrimeOutput (
    /** @attribute InAttribute() */ int lOutputs, 
    /** @attribute InAttribute() */ /** @ref */ int lOutputIDs, 
    /** @attribute InAttribute() */ /** @ref */ IDTSBuffer90 pIDTSBufferOutputs
)
JScript는 값 유형 인수를 참조로 전달하는 것을 지원하지 않습니다.

매개 변수

  • lOutputs
    The number of elements in the outputIDs and buffers arrays.

주의

The number of elements in the lOutputs and pIDTSBufferOutputs array is determined by the number of IDTSOutput90 objects in the IDTSOutputCollection90 of the component connected to an IDTSPath90 object.

Each element in the lOutputIDs array has a IDTSBuffer90 at the same index in the pIDTSBufferOutputs array.

Rows are added to the PipelineBuffer by calling the AddRow method, and when finished, the SetEndOfRowset method is called to notify the data flow task that the component is finished adding rows.

PrimeOutput is called for components whose SynchronousInputID property is set to zero.

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

IDTSRuntimeComponent90 Interface
IDTSRuntimeComponent90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace