OracleDataReader.GetBytes(Int32, Int64, Byte[], Int32, Int32) 方法

定义

将字节流从指定列偏移量读入到缓冲区中,将其作为从给定缓冲区偏移量开始的数组。

public:
 virtual long GetBytes(int i, long fieldOffset, cli::array <System::Byte> ^ buffer2, int bufferoffset, int length);
public:
 override long GetBytes(int i, long fieldOffset, cli::array <System::Byte> ^ buffer2, int bufferoffset, int length);
public long GetBytes (int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length);
public override long GetBytes (int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length);
abstract member GetBytes : int * int64 * byte[] * int * int -> int64
override this.GetBytes : int * int64 * byte[] * int * int -> int64
override this.GetBytes : int * int64 * byte[] * int * int -> int64
Public Function GetBytes (i As Integer, fieldOffset As Long, buffer2 As Byte(), bufferoffset As Integer, length As Integer) As Long
Public Overrides Function GetBytes (i As Integer, fieldOffset As Long, buffer2 As Byte(), bufferoffset As Integer, length As Integer) As Long

参数

i
Int32

从零开始的列序号。

fieldOffset
Int64

字段中读取操作开始位置的索引。

buffer2
Byte[]

要读入字节流的缓冲区。

bufferoffset
Int32

buffer2 开始写操作位置的索引。

length
Int32

要读取的字节数。

返回

读取的实际字节数。

实现

注解

GetBytes 返回 字段中的可用字节数。 在大多数情况下,这是字段的确切长度。 但是,如果 GetBytes 已用于从字段中获取字节,则返回的数字可能小于字段的真实长度。 例如,如果 OracleDataReader 正在将大型数据结构读取到缓冲区中,则可能是这种情况。 有关详细信息,请参阅 SequentialAccess 的设置 CommandBehavior

如果传递的缓冲区为 null 值, GetBytes 则返回字段的长度(以字节为单位)。

适用于