Share via


ScriptComponent.SetBufferColumnIndexes Method

This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.

Sets the index of the buffer columns.

Namespace:  Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.TxScript (in Microsoft.SqlServer.TxScript.dll)

Syntax

'Declaration
Public Sub SetBufferColumnIndexes ( _
    ObjectIDsToUse As Integer(), _
    BufferColumnIndexesToUse As Integer()() _
)
'Usage
Dim instance As ScriptComponent 
Dim ObjectIDsToUse As Integer()
Dim BufferColumnIndexesToUse As Integer()()

instance.SetBufferColumnIndexes(ObjectIDsToUse, _
    BufferColumnIndexesToUse)
public void SetBufferColumnIndexes(
    int[] ObjectIDsToUse,
    int[][] BufferColumnIndexesToUse
)
public:
void SetBufferColumnIndexes(
    array<int>^ ObjectIDsToUse, 
    array<array<int>^>^ BufferColumnIndexesToUse
)
member SetBufferColumnIndexes : 
        ObjectIDsToUse:int[] * 
        BufferColumnIndexesToUse:int[][] -> unit
public function SetBufferColumnIndexes(
    ObjectIDsToUse : int[], 
    BufferColumnIndexesToUse : int[][]
)

Parameters

  • ObjectIDsToUse
    Type: array<System.Int32[]
    The collection of object identifier.
  • BufferColumnIndexesToUse
    Type: array<array<System.Int32[][]
    The collection of buffer column indexes.

See Also

Reference

ScriptComponent Class

Microsoft.SqlServer.Dts.Pipeline Namespace