Condividi tramite


ScriptComponent.ProcessInput Method

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

Spazio dei nomi: Microsoft.SqlServer.Dts.Pipeline
Assembly : Microsoft.SqlServer.TxScript (in microsoft.sqlserver.txscript.dll)

Sintassi

'Dichiarazione
Public Overridable Sub ProcessInput ( _
    InputID As Integer, _
    Buffer As PipelineBuffer _
)
public virtual void ProcessInput (
    int InputID,
    PipelineBuffer Buffer
)
public:
virtual void ProcessInput (
    int InputID, 
    PipelineBuffer^ Buffer
)
public void ProcessInput (
    int InputID, 
    PipelineBuffer Buffer
)
public function ProcessInput (
    InputID : int, 
    Buffer : PipelineBuffer
)

Parametri

  • InputID
    The ID of the input to process.

Osservazioni

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.

Esempio

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

Thread Safety

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.

Piattaforme

Piattaforme di sviluppo

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Piattaforme di destinazione

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Vedere anche

Riferimento

ScriptComponent Class
ScriptComponent Members
Microsoft.SqlServer.Dts.Pipeline Namespace