Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Retrieves the data stored in a specified row and column of a IDTSBuffer100.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Function GetData ( _
hRow As Integer, _
hCol As Integer _
) As DTP_VARIANT
'Usage
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim hCol As Integer
Dim returnValue As DTP_VARIANT
returnValue = instance.GetData(hRow, hCol)
DTP_VARIANT GetData(
int hRow,
int hCol
)
DTP_VARIANT GetData(
[InAttribute] int hRow,
[InAttribute] int hCol
)
abstract GetData :
hRow:int *
hCol:int -> DTP_VARIANT
function GetData(
hRow : int,
hCol : int
) : DTP_VARIANT
Parameters
- hRow
Type: System.Int32
The handle for the row.
- hCol
Type: System.Int32
The handle for the column.
Return Value
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.DTP_VARIANT
A DTP_VARIANT object that contains the data stored in the specified column in the IDTSBuffer100.
Remarks
This method retrieves the data stored in the specified column in the buffer. Managed component developers do not call this method, but instead use the Item property of the managed PipelineBuffer class.