Metodo SqlCeUpdatableRecord.GetBytes
Copia una lunghezza di byte nel buffer, a partire dalla posizione indicata nel campo specificato.
Spazio dei nomi System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Sintassi
'Dichiarazione
Public Function GetBytes ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Byte(), _
bufferIndex As Integer, _
length As Integer _
) As Long
'Utilizzo
Dim instance As SqlCeUpdatableRecord
Dim ordinal As Integer
Dim dataIndex As Long
Dim buffer As Byte()
Dim bufferIndex As Integer
Dim length As Integer
Dim returnValue As Long
returnValue = instance.GetBytes(ordinal, _
dataIndex, buffer, bufferIndex, length)
public long GetBytes(
int ordinal,
long dataIndex,
byte[] buffer,
int bufferIndex,
int length
)
public:
virtual long long GetBytes(
int ordinal,
long long dataIndex,
array<unsigned char>^ buffer,
int bufferIndex,
int length
) sealed
abstract GetBytes :
ordinal:int *
dataIndex:int64 *
buffer:byte[] *
bufferIndex:int *
length:int -> int64
override GetBytes :
ordinal:int *
dataIndex:int64 *
buffer:byte[] *
bufferIndex:int *
length:int -> int64
public final function GetBytes(
ordinal : int,
dataIndex : long,
buffer : byte[],
bufferIndex : int,
length : int
) : long
Parametri
- ordinal
Tipo: System.Int32
Posizione ordinale della colonna da cui recuperare i dati.
- dataIndex
Tipo: System.Int64
Offset (in byte) all'interno del campo da cui iniziare a copiare i dati.
- buffer
Tipo: array<System.Byte[]
Buffer in cui copiare i dati.
- bufferIndex
Tipo: System.Int32
Offset all'interno del buffer da cui iniziare la copia.
- length
Tipo: System.Int32
Numero massimo di byte da copiare.
Valore restituito
Tipo: System.Int64
Implementa
IDataRecord.GetBytes(Int32, Int64, array<Byte[], Int32, Int32)