IDTSRuntimeComponent90.ProcessInput Method

Called on transformation and destination components that have IDTSInput90 objects that are connected to an upstream component. The developer needs to supply the code that processes the input buffers.

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

구문

‘선언
<DispIdAttribute(15)> _
Sub ProcessInput ( _
    <InAttribute> lInputID As Integer, _
    <InAttribute> pIDTSBufferInput As IDTSBuffer90 _
)
[DispIdAttribute(15)] 
void ProcessInput (
    [InAttribute] int lInputID,
    [InAttribute] IDTSBuffer90 pIDTSBufferInput
)
[DispIdAttribute(15)] 
void ProcessInput (
    [InAttribute] int lInputID, 
    [InAttribute] IDTSBuffer90^ pIDTSBufferInput
)
/** @attribute DispIdAttribute(15) */ 
void ProcessInput (
    /** @attribute InAttribute() */ int lInputID, 
    /** @attribute InAttribute() */ IDTSBuffer90 pIDTSBufferInput
)
DispIdAttribute(15) 
function ProcessInput (
    lInputID : int, 
    pIDTSBufferInput : IDTSBuffer90
)

매개 변수

주의

ProcessInput is called to provide a component a full IDTSBuffer90 object containing rows from the upstream component. The columns contained in the buffer include those columns defined in the IDTSInputColumnCollection90 of the component. If the component has synchronous outputs, it also includes the columns added to the output column collection by the component, and all the columns in the output column collection of the components that are upstream from the component. Columns are located in a buffer row by using the FindColumnByLineageID method of the BufferManager.

ProcessInput is called repeatedly as the data flow task receives full buffers from the upstream components. The final call to the ProcessInput method is confirmed when the IsEndOfRowset property is true.

스레드 보안

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