Метод SqlCeUpdatableRecord.GetBytes
Копирует длину байтов в буфер, начиная с указанного положения указанного поля.
Пространство имен: System.Data.SqlServerCe
Сборка: System.Data.SqlServerCe (в System.Data.SqlServerCe.dll)
Синтаксис
'Декларация
Public Function GetBytes ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Byte(), _
bufferIndex As Integer, _
length As Integer _
) As Long
'Применение
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
Параметры
- ordinal
Тип: System.Int32
Порядковый номер столбца, из которого считываются данные.
- dataIndex
Тип: System.Int64
Смещение (в байтах) в поле, с которого следует начать копирование данных.
- buffer
Тип: array<System.Byte[]
Буфер, в который копируются данные.
- bufferIndex
Тип: System.Int32
Смещение в буфере, с которого начинается копирование.
- length
Тип: System.Int32
Максимальное число байтов для копирования.
Возвращаемое значение
Тип: System.Int64
Реализует
IDataRecord.GetBytes(Int32, Int64, array<Byte[], Int32, Int32)