ICallableStatement.GetCharacterStream Method

Definition

Overloads

GetCharacterStream(Int32)

Retrieves the value of the designated parameter as a <code>java.

GetCharacterStream(String)

Retrieves the value of the designated parameter as a <code>java.

GetCharacterStream(Int32)

Retrieves the value of the designated parameter as a <code>java.

[Android.Runtime.Register("getCharacterStream", "(I)Ljava/io/Reader;", "GetGetCharacterStream_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.IO.Reader? GetCharacterStream (int parameterIndex);
[<Android.Runtime.Register("getCharacterStream", "(I)Ljava/io/Reader;", "GetGetCharacterStream_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetCharacterStream : int -> Java.IO.Reader

Parameters

parameterIndex
Int32

the first parameter is 1, the second is 2, ...

Returns

Reader

a <code>java.io.Reader</code> object that contains the parameter value; if the value is SQL <code>NULL</code>, the value returned is <code>null</code> in the Java programming language.

Attributes

Exceptions

if a database error occurs.

Remarks

Java documentation for java.sql.CallableStatement.getCharacterStream(int).

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

GetCharacterStream(String)

Retrieves the value of the designated parameter as a <code>java.

[Android.Runtime.Register("getCharacterStream", "(Ljava/lang/String;)Ljava/io/Reader;", "GetGetCharacterStream_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.IO.Reader? GetCharacterStream (string? parameterName);
[<Android.Runtime.Register("getCharacterStream", "(Ljava/lang/String;)Ljava/io/Reader;", "GetGetCharacterStream_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetCharacterStream : string -> Java.IO.Reader

Parameters

parameterName
String

the name of the parameter

Returns

Reader

a <code>java.io.Reader</code> object that contains the parameter value; if the value is SQL <code>NULL</code>, the value returned is <code>null</code> in the Java programming language

Attributes

Exceptions

if a database error occurs

Remarks

Java documentation for java.sql.CallableStatement.getCharacterStream(java.lang.String).

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