Прочетете на английски Редактиране

Споделяне чрез


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

Definition

Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the particular buffer offset.

C#
public override long GetBytes(int i, long dataIndex, byte[]? buffer, int bufferIndex, int length);
C#
public long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
C#
public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);

Parameters

i
Int32

The zero-based column ordinal.

dataIndex
Int64

The index within the field where the read operation is to start.

buffer
Byte[]

The buffer into which to read the stream of bytes.

bufferIndex
Int32

The index within the buffer where the write operation is to start.

length
Int32

The number of bytes to read.

Returns

The actual number of bytes read.

Implements

Remarks

GetBytes returns the number of available bytes in the field. Most of the time this is the exact length of the field. However, the number returned may be less than the true length of the field if GetBytes has already been used to obtain bytes from the field. This may be the case, for example, if the OdbcDataReader is reading a large data structure into a buffer. For more information, see the SequentialAccess setting for CommandBehavior.

If you pass a buffer that is a null value, GetBytes returns the length of the field in bytes.

Conversions are performed based on the underlying capabilities of the ODBC driver. If the conversion is not supported then the method call will fail.

Бележка

No exception will be thrown if the value of bufferIndex is outside the array. No data will be read and the method will return 0.

Applies to

Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also