ICallableStatement.GetClob Method

Definition

Overloads

GetClob(Int32)

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

GetClob(String)

Retrieves the value of a JDBC <code>CLOB</code> parameter as a <code>java.

GetClob(Int32)

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

[Android.Runtime.Register("getClob", "(I)Ljava/sql/Clob;", "GetGetClob_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IClob? GetClob (int parameterIndex);
[<Android.Runtime.Register("getClob", "(I)Ljava/sql/Clob;", "GetGetClob_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetClob : int -> Java.Sql.IClob

Parameters

parameterIndex
Int32

the first parameter is 1, the second is 2, and so on

Returns

IClob

the parameter value as a <code>Clob</code> object in the Java programming language. If the value was SQL <code>NULL</code>, the value <code>null</code> is returned.

Attributes

Exceptions

if a database error occurs.

Remarks

Java documentation for java.sql.CallableStatement.getClob(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.

See also

Applies to

GetClob(String)

Retrieves the value of a JDBC <code>CLOB</code> parameter as a <code>java.

[Android.Runtime.Register("getClob", "(Ljava/lang/String;)Ljava/sql/Clob;", "GetGetClob_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IClob? GetClob (string? parameterName);
[<Android.Runtime.Register("getClob", "(Ljava/lang/String;)Ljava/sql/Clob;", "GetGetClob_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetClob : string -> Java.Sql.IClob

Parameters

parameterName
String

the name of the parameter

Returns

IClob

the parameter value as a <code>Clob</code> object in the Java programming language. If the value was SQL <code>NULL</code>, the value <code>null</code> is returned.

Attributes

Exceptions

if a database error occurs.

Remarks

Java documentation for java.sql.CallableStatement.getClob(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.

See also

Applies to