共用方式為


ScriptComponent.ProcessInput 方法 (Int32, PipelineBuffer)

Processes the inputs in Script components, such as transformations and destinations, that receive inputs from upstream components.

命名空間:  Microsoft.SqlServer.Dts.Pipeline
組件:  Microsoft.SqlServer.TxScript (在 Microsoft.SqlServer.TxScript.dll 中)

語法

'宣告
Public Overridable Sub ProcessInput ( _
    InputID As Integer, _
    buffer As PipelineBuffer _
)
'用途
Dim instance As ScriptComponent 
Dim InputID As Integer 
Dim buffer As PipelineBuffer

instance.ProcessInput(InputID, buffer)
public virtual void ProcessInput(
    int InputID,
    PipelineBuffer buffer
)
public:
virtual void ProcessInput(
    int InputID, 
    PipelineBuffer^ buffer
)
abstract ProcessInput : 
        InputID:int * 
        buffer:PipelineBuffer -> unit  
override ProcessInput : 
        InputID:int * 
        buffer:PipelineBuffer -> unit
public function ProcessInput(
    InputID : int, 
    buffer : PipelineBuffer
)

參數

  • InputID
    型別:System.Int32
    The ID of the input to process.

備註

The Script component developer does not use the ScriptComponent class directly, but indirectly, by coding the methods and properties of the ScriptMain class, which inherits from ScriptComponent through the UserComponent class.

Although the developer can override the ProcessInput method, it is usually sufficient to override the <InputBufferX>_ProcessInputRows method in the ScriptMain class to process data from the input buffers. When additional processing is required, it may be preferable to override the <InputBufferX>_ProcessInput method.

範例

The following code sample from the autogenerated ComponentWrapper project item shows how the Script component uses the ProcessInput method.

    Public Overridable Sub Input0_ProcessInput(ByVal Buffer As Input0Buffer)

        While Buffer.NextRow()
            Input0_ProcessInputRow(Buffer)
        End While

    End Sub

請參閱

參考

ScriptComponent 類別

ProcessInput 多載

Microsoft.SqlServer.Dts.Pipeline 命名空間