Metodo SqlCeResultSet.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 Overrides Function GetBytes ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Byte(), _
bufferIndex As Integer, _
length As Integer _
) As Long
'Utilizzo
Dim instance As SqlCeResultSet
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 override 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
) override
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 override 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
Numero effettivo di byte copiati nel buffer.
Implementa
IDataRecord.GetBytes(Int32, Int64, array<Byte[], Int32, Int32)
Osservazioni
Questa funzione restituisce il numero effettivo di byte copiati, che può essere inferiore alla lunghezza richiesta se viene raggiunta la fine del campo.
Se si passa un buffer con valore null, il metodo GetBytes restituisce la lunghezza del campo espressa in byte.
Se il comando viene eseguito con l'impostazione SequentialAccess, nelle chiamate al metodo GetBytes è necessario specificare letture con incrementi sequenziali. In caso contrario, viene generata un'eccezione.
Il metodo GetBytes può essere chiamato solo per colonne il cui tipo è binary o varbinary o che sono state create con oggetti di cui è possibile eseguire il cast a una matrice di byte.
Se nella posizione ordinale specificata non è presente alcun campo, viene generata un'eccezione.