OracleDataReader.GetBytes(Int32, Int64, Byte[], Int32, Int32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Legge un flusso di byte dall'offset di colonna specificato nel buffer come matrice, a partire dall'offset del buffer specificato.
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
Parametri
- i
- Int32
Ordinale di colonna in base zero.
- fieldOffset
- Int64
Indice all'interno del campo dal quale iniziare l'operazione di lettura.
- buffer2
- Byte[]
Buffer in cui leggere il flusso di byte.
- bufferoffset
- Int32
Indice dal quale il buffer2
inizia l'operazione di scrittura.
- length
- Int32
Numero di byte da leggere.
Restituisce
Numero effettivo di byte letti.
Implementazioni
Commenti
GetBytes restituisce il numero di byte disponibili nel campo . Nella maggior parte dei casi si tratta della lunghezza esatta del campo. Tuttavia, il numero restituito può essere minore della lunghezza reale del campo se GetBytes
è già stato usato per ottenere byte dal campo. Questo può essere il caso, ad esempio, se sta OracleDataReader leggendo una struttura di dati di grandi dimensioni in un buffer. Per altre informazioni, vedere l'impostazione SequentialAccess
di CommandBehavior.
Se si passa un buffer che è un valore Null, GetBytes restituisce la lunghezza del campo in byte.