IResultSet.GetNClob Method

Definition

Overloads

GetNClob(Int32)

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

GetNClob(String)

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

GetNClob(Int32)

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

[Android.Runtime.Register("getNClob", "(I)Ljava/sql/NClob;", "GetGetNClob_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.INClob? GetNClob (int columnIndex);
[<Android.Runtime.Register("getNClob", "(I)Ljava/sql/NClob;", "GetGetNClob_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetNClob : int -> Java.Sql.INClob

Parameters

columnIndex
Int32

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

Returns

a NClob object representing the SQL NCLOB value in the specified column

Attributes

Exceptions

Remarks

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

Added in 1.6.

Java documentation for java.sql.ResultSet.getNClob(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

GetNClob(String)

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

[Android.Runtime.Register("getNClob", "(Ljava/lang/String;)Ljava/sql/NClob;", "GetGetNClob_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.INClob? GetNClob (string? columnLabel);
[<Android.Runtime.Register("getNClob", "(Ljava/lang/String;)Ljava/sql/NClob;", "GetGetNClob_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetNClob : string -> Java.Sql.INClob

Parameters

columnLabel
String

the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column

Returns

a NClob object representing the SQL NCLOB value in the specified column

Attributes

Exceptions

Remarks

Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

Added in 1.6.

Java documentation for java.sql.ResultSet.getNClob(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