Metodo GetRowStarts
(Feature deprecated, see Remarks.) Use the GetData or GetBLOBData method instead of the GetRowStarts method.
Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintassi
'Dichiarazione
Sub GetRowStarts ( _
dwRowsRequested As UInteger, _
<OutAttribute> pbRowStarts As IntPtr _
)
'Utilizzo
Dim instance As IDTSBuffer100
Dim dwRowsRequested As UInteger
Dim pbRowStarts As IntPtr
instance.GetRowStarts(dwRowsRequested, _
pbRowStarts)
void GetRowStarts(
uint dwRowsRequested,
IntPtr pbRowStarts
)
void GetRowStarts(
[InAttribute] unsigned int dwRowsRequested,
[OutAttribute] IntPtr pbRowStarts
)
abstract GetRowStarts :
dwRowsRequested:uint32 *
pbRowStarts:IntPtr byref -> unit
function GetRowStarts(
dwRowsRequested : uint,
pbRowStarts : IntPtr
)
Parametri
- dwRowsRequested
Tipo: System. . :: . .UInt32
The number of rows requested.
- pbRowStarts
Tipo: System. . :: . .IntPtr
An out pointer that holds the address of 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 returns a pointer to the start location for the specified number of rows.
Vedere anche