SqlDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32) Method

Definition

Gets the value for the column specified by the ordinal as an array of Byte objects.

C#
public virtual long GetBytes (int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length);

Parameters

ordinal
Int32

The zero-based ordinal of the column.

fieldOffset
Int64

The offset into the field value to start retrieving bytes.

buffer
Byte[]

The target buffer to which to copy bytes.

bufferOffset
Int32

The offset into the buffer to which to start copying bytes.

length
Int32

The number of bytes to copy to the buffer.

Returns

The number of bytes copied.

Implements

Exceptions

The ordinal is less than 0 or greater than the number of columns (that is, FieldCount).

The column specified by ordinal is null.

There is a type mismatch.

Remarks

This method enables you to obtain a binary value either in a single call or in chunks. Getting the value in chunks is useful for large values or values of unknown size.

To obtain the value in several chunks, allocate a byte array of the chunk-size and call GetBytes repeatedly, adjusting the fieldOffset parameter accordingly in each call.

Applies to

Product Versions
SqlClient .NET Core 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2
SqlClient .NET Framework 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2
SqlClient .NET Standard 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2