SqlCeUpdatableRecord.GetBytes Método
Copia una longitud de bytes en el búfer empezando en una posición dada del campo especificado.
Espacio de nombres: System.Data.SqlServerCe
Ensamblado: System.Data.SqlServerCe (en System.Data.SqlServerCe.dll)
Sintaxis
'Declaración
Public Function GetBytes ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Byte(), _
bufferIndex As Integer, _
length As Integer _
) As Long
'Uso
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
Parámetros
- ordinal
Tipo: System.Int32
Posición ordinal de la columna de la que se van a recuperar datos.
- dataIndex
Tipo: System.Int64
Desplazamiento (en bytes) dentro del campo a partir del cual se van a empezar a copiar datos.
- buffer
Tipo: array<System.Byte[]
Búfer en el que se van a copiar los datos.
- bufferIndex
Tipo: System.Int32
El desplazamiento en el búfer a partir del cual se inicia la copia.
- length
Tipo: System.Int32
Número máximo de bytes que se van a copiar.
Valor devuelto
Tipo: System.Int64
Implementa
IDataRecord.GetBytes(Int32, Int64, array<Byte[], Int32, Int32)