OracleDataReader.GetChars Method
Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.
[Visual Basic] Public Overridable Function GetChars( _ ByVal i As Integer, _ ByVal fieldOffset As Long, _ ByVal buffer2() As Char, _ ByVal bufferoffset As Integer, _ ByVal length As Integer _ ) As Long Implements IDataRecord.GetChars [C#] public virtual long GetChars( int i, long fieldOffset, char[] buffer2, int bufferoffset, int length ); [C++] public: virtual __int64 GetChars( int i, __int64 fieldOffset, __wchar_t buffer2 __gc[], int bufferoffset, int length ); [JScript] public function GetChars( i : int, fieldOffset : long, buffer2 : Char[], bufferoffset : int, length : int ) : long;
Parameters
- i
- The zero-based column ordinal.
- fieldOffset
- The index within the row where the read operation is to begin.
- buffer2
- The buffer into which to copy data.
- bufferoffset
- The index where buffer is to begin the write operation.
- length
- The number of characters to read.
Return Value
The actual number of characters read.
Implements
Remarks
GetChars returns the number of available characters 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 GetChars has already been used to obtain characters 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. GetChars returns the length of the field in characters.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
OracleDataReader Class | OracleDataReader Members | System.Data.OracleClient Namespace