OracleDataReader.GetBytes Method
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
public override long GetBytes ( int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length )
public long GetBytes ( int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length )
public override function GetBytes ( i : int, fieldOffset : long, buffer2 : byte[], bufferoffset : int, length : int ) : long
Parameters
- i
The zero-based column ordinal.
- fieldOffset
The index within the field where the read operation is to begin.
- buffer2
The buffer into which to read the stream of bytes.
- bufferoffset
The index where buffer is to begin the write operation.
- length
The number of bytes to read.
Return Value
The actual number of bytes read.GetBytes returns the number of available bytes in the field. In most cases 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 OracleDataReader is reading a large data structure into a buffer. For more information, see the SequentialAccess setting of CommandBehavior.
If you pass a buffer that is a null value, GetBytes returns the length of the field in bytes.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.