Metodo SqlCeResultSet.GetChars
Copia una lunghezza di caratteri nel buffer, a partire dalla posizione indicata nel campo specificato.
Spazio dei nomi System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Sintassi
'Dichiarazione
Public Overrides Function GetChars ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Char(), _
bufferIndex As Integer, _
length As Integer _
) As Long
'Utilizzo
Dim instance As SqlCeResultSet
Dim ordinal As Integer
Dim dataIndex As Long
Dim buffer As Char()
Dim bufferIndex As Integer
Dim length As Integer
Dim returnValue As Long
returnValue = instance.GetChars(ordinal, _
dataIndex, buffer, bufferIndex, length)
public override long GetChars(
int ordinal,
long dataIndex,
char[] buffer,
int bufferIndex,
int length
)
public:
virtual long long GetChars(
int ordinal,
long long dataIndex,
array<wchar_t>^ buffer,
int bufferIndex,
int length
) override
abstract GetChars :
ordinal:int *
dataIndex:int64 *
buffer:char[] *
bufferIndex:int *
length:int -> int64
override GetChars :
ordinal:int *
dataIndex:int64 *
buffer:char[] *
bufferIndex:int *
length:int -> int64
public override function GetChars(
ordinal : int,
dataIndex : long,
buffer : char[],
bufferIndex : int,
length : int
) : long
Parametri
- ordinal
Tipo: System.Int32
Posizione ordinale del campo da cui recuperare i dati.
- dataIndex
Tipo: System.Int64
Offset (in caratteri) all'interno del campo da cui iniziare a copiare.
- buffer
Tipo: array<System.Char[]
Buffer in cui copiare i dati.
- bufferIndex
Tipo: System.Int32
Offset all'interno del buffer da cui iniziare la copia.
- length
Tipo: System.Int32
Numero massimo di byte da copiare.
Valore restituito
Tipo: System.Int64
Numero effettivo di caratteri copiati.
Implementa
IDataRecord.GetChars(Int32, Int64, array<Char[], Int32, Int32)
Osservazioni
Questa funzione restituisce il numero effettivo di caratteri copiati, che può essere inferiore alla lunghezza richiesta se viene raggiunta la fine del campo.
Se si passa un buffer con valore null, il metodo GetChars restituisce la lunghezza del campo espressa in caratteri.
Se il comando viene eseguito con l'impostazione SequentialAccess, nelle chiamate al metodo GetChars è necessario specificare letture con incrementi sequenziali. In caso contrario, viene generata un'eccezione.
Se nella posizione ordinale specificata non è presente alcun campo, viene generata un'eccezione.