Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Retrieves the BufferColumn structure for a PipelineBuffer column.
Diese API ist nicht mit CLS kompatibel.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Function GetColumnInfo ( _
columnIndex As Integer _
) As BufferColumn
'Usage
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim returnValue As BufferColumn
returnValue = instance.GetColumnInfo(columnIndex)
[CLSCompliantAttribute(false)]
public BufferColumn GetColumnInfo(
int columnIndex
)
[CLSCompliantAttribute(false)]
public:
BufferColumn GetColumnInfo(
int columnIndex
)
[<CLSCompliantAttribute(false)>]
member GetColumnInfo :
columnIndex:int -> BufferColumn
public function GetColumnInfo(
columnIndex : int
) : BufferColumn
Parameter
- columnIndex
Typ: System.Int32
The index of the column whose BufferColumn structure is retrieved.
Rückgabewert
Typ: Microsoft.SqlServer.Dts.Pipeline.BufferColumn
The BufferColumn structure of the specified PipelineBuffer column.
Hinweise
The BufferColumn contains information about the data stored in a PipelineBuffer column. This information can be used to prevent exceptions that might occur when assigning data to the buffer column. For example, columns with a fixed length such as the DT_STR, DT_TEXT, DT_WSTR, and DT_BYTES data types will fail if the data length is greater than the MaxLength of the BufferColumn.