ScriptBuffer 构造函数

Initializes a new instance of the ScriptBuffer class.

命名空间:  Microsoft.SqlServer.Dts.Pipeline
程序集:  Microsoft.SqlServer.TxScript(在 Microsoft.SqlServer.TxScript.dll 中)

语法

声明
Public Sub New ( _
    BufferToUse As PipelineBuffer, _
    BufferColumnIndexesToUse As Integer() _
)
用法
Dim BufferToUse As PipelineBuffer
Dim BufferColumnIndexesToUse As Integer()

Dim instance As New ScriptBuffer(BufferToUse, _
    BufferColumnIndexesToUse)
public ScriptBuffer(
    PipelineBuffer BufferToUse,
    int[] BufferColumnIndexesToUse
)
public:
ScriptBuffer(
    PipelineBuffer^ BufferToUse, 
    array<int>^ BufferColumnIndexesToUse
)
new : 
        BufferToUse:PipelineBuffer * 
        BufferColumnIndexesToUse:int[] -> ScriptBuffer
public function ScriptBuffer(
    BufferToUse : PipelineBuffer, 
    BufferColumnIndexesToUse : int[]
)

参数

  • BufferColumnIndexesToUse
    类型:array<System. . :: . .Int32> [] () [] []
    An array of type Integer containing the column indexes for the columns in the buffer.

注释

The Script component developer does not use the ScriptBuffer class directly, but indirectly, through the derived classes in the BufferWrapper project item that represent the component's input and outputs.

The developer does not have to use the constructor for the ScriptBuffer class.

示例

The following sample code from the autogenerated BufferWrapper project item demonstrates how the Script component uses the constructor for the classes that inherit from ScriptBuffer.

    Public Sub New(ByVal Buffer As PipelineBuffer, ByVal BufferColumnIndexes As Integer())
        MyBase.New(Buffer, BufferColumnIndexes)
    End Sub