Метод PrimeOutput
Prepares the outputs in Script components, such as sources and transformations with asynchronous outputs, that add new rows to the output buffers.
Пространство имен: Microsoft.SqlServer.Dts.Pipeline
Сборка: Microsoft.SqlServer.TxScript (в Microsoft.SqlServer.TxScript.dll)
Синтаксис
'Декларация
Public Overridable Sub PrimeOutput ( _
Outputs As Integer, _
OutputIDs As Integer(), _
Buffers As PipelineBuffer() _
)
'Применение
Dim instance As ScriptComponent
Dim Outputs As Integer
Dim OutputIDs As Integer()
Dim Buffers As PipelineBuffer()
instance.PrimeOutput(Outputs, OutputIDs, _
Buffers)
public virtual void PrimeOutput(
int Outputs,
int[] OutputIDs,
PipelineBuffer[] Buffers
)
public:
virtual void PrimeOutput(
int Outputs,
array<int>^ OutputIDs,
array<PipelineBuffer^>^ Buffers
)
abstract PrimeOutput :
Outputs:int *
OutputIDs:int[] *
Buffers:PipelineBuffer[] -> unit
override PrimeOutput :
Outputs:int *
OutputIDs:int[] *
Buffers:PipelineBuffer[] -> unit
public function PrimeOutput(
Outputs : int,
OutputIDs : int[],
Buffers : PipelineBuffer[]
)
Параметры
- Outputs
Тип: System. . :: . .Int32
The count of the outputs of the components.
- OutputIDs
Тип: array<System. . :: . .Int32> [] () [] []
An array of type Integer that contains the IDs of the outputs of the components.
- Buffers
Тип: array<Microsoft.SqlServer.Dts.Pipeline. . :: . .PipelineBuffer> [] () [] []
An array of PipelineBuffer objects that contains the output rows.
Замечания
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 PrimeOutput method, it is usually sufficient to override the CreateNewOutputRows method in the ScriptMain class to load data into the output buffers.
Примеры
The following code sample from the autogenerated ComponentWrapper project item shows how the Script component uses the PrimeOutput method in a component with two outputs.
Public Overrides Sub PrimeOutput(ByVal Outputs As Integer, ByVal OutputIDs() As Integer, ByVal Buffers() As PipelineBuffer)
For I As Integer = 0 To Outputs - 1
If OutputIDs(I) = 29 Then
Output0Buffer = New Output0Buffer(Buffers(I), GetColumnIndexes(OutputIDs(I)))
End If
If OutputIDs(I) = 126 Then
Output1Buffer = New Output1Buffer(Buffers(I), GetColumnIndexes(OutputIDs(I)))
End If
Next
CreateNewOutputRows()
End Sub