IDTSBufferManager100.GetColumnInfo Method (Int32, Int32, DTP_BUFFCOL)

 

Applies To: SQL Server 2016 Preview

Gets the DTP_BUFFCOL structure for a column in a specified buffer definition.

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

Syntax

[DispIdAttribute(122)]
void GetColumnInfo(
    int hBufferType,
    int hCol,
    ref DTP_BUFFCOL pCol
)
[DispIdAttribute(122)]
void GetColumnInfo(
    int hBufferType,
    int hCol,
    DTP_BUFFCOL% pCol
)
[<DispIdAttribute(122)>]
abstract GetColumnInfo : 
        hBufferType:int *
        hCol:int *
        pCol:DTP_BUFFCOL byref -> unit
<DispIdAttribute(122)>
Sub GetColumnInfo (
    hBufferType As Integer,
    hCol As Integer,
    ByRef pCol As DTP_BUFFCOL
)

Parameters

  • hBufferType
    Type: System.Int32

    The ID of the buffer definition.

Remarks

This method retrieves the DTP_BUFFCOL structure for the column specified by the hCol parameter in the specified buffer type definition. If the buffer definition or the column is not found, an E_INVALIDARG is returned.

See Also

IDTSBufferManager100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top