IClob.GetCharacterStream(Int64, Int64) Method

Definition

Returns a Reader object that contains a partial Clob value, starting with the character specified by pos, which is length characters in length.

[Android.Runtime.Register("getCharacterStream", "(JJ)Ljava/io/Reader;", "GetGetCharacterStream_JJHandler:Java.Sql.IClobInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.IO.Reader? GetCharacterStream (long pos, long length);
[<Android.Runtime.Register("getCharacterStream", "(JJ)Ljava/io/Reader;", "GetGetCharacterStream_JJHandler:Java.Sql.IClobInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetCharacterStream : int64 * int64 -> Java.IO.Reader

Parameters

pos
Int64

the offset to the first character of the partial value to be retrieved. The first character in the Clob is at position 1.

length
Int64

the length in characters of the partial value to be retrieved.

Returns

Reader through which the partial Clob value can be read.

Attributes

Exceptions

Remarks

Returns a Reader object that contains a partial Clob value, starting with the character specified by pos, which is length characters in length.

Added in 1.6.

Java documentation for java.sql.Clob.getCharacterStream(long, long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to