Metodo GetRowDataBytes
(Feature deprecated, see Remarks.) Gets a pointer to the start of a row in an IDTSBuffer100.
Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintassi
'Dichiarazione
Sub GetRowDataBytes ( _
hRow As Integer, _
<OutAttribute> ByRef plCB As Integer, _
<OutAttribute> pData As IntPtr _
)
'Utilizzo
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim plCB As Integer
Dim pData As IntPtr
instance.GetRowDataBytes(hRow, plCB, pData)
void GetRowDataBytes(
int hRow,
out int plCB,
IntPtr pData
)
void GetRowDataBytes(
[InAttribute] int hRow,
[OutAttribute] int% plCB,
[OutAttribute] IntPtr pData
)
abstract GetRowDataBytes :
hRow:int *
plCB:int byref *
pData:IntPtr byref -> unit
function GetRowDataBytes(
hRow : int,
plCB : int,
pData : IntPtr
)
Parametri
- hRow
Tipo: System. . :: . .Int32
The row handle.
- plCB
Tipo: System. . :: . .Int32%
An out parameter that contains the number of bytes in the row.
- pData
Tipo: System. . :: . .IntPtr
An out parameter that contains a pointer to the beginning of the row.
Osservazioni
Nota
Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa caratteristica in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.
This method gets a pointer to the start of the row, specified by the hRow parameter, in the IDTSBuffer100.
Vedere anche