ICallableStatement.SetNClob Method

Definition

Overloads

SetNClob(String, Reader)

Sets the designated parameter to a Reader object.

SetNClob(String, INClob)

Sets the designated parameter to a java.sql.NClob object.

SetNClob(String, Reader, Int64)

Sets the designated parameter to a Reader object.

SetNClob(String, Reader)

Sets the designated parameter to a Reader object.

[Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/io/Reader;)V", "GetSetNClob_Ljava_lang_String_Ljava_io_Reader_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void SetNClob (string? parameterName, Java.IO.Reader? reader);
[<Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/io/Reader;)V", "GetSetNClob_Ljava_lang_String_Ljava_io_Reader_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SetNClob : string * Java.IO.Reader -> unit

Parameters

parameterName
String

the name of the parameter

reader
Reader

An object that contains the data to set the parameter value to.

Attributes

Exceptions

if a database error occurs

Remarks

Sets the designated parameter to a Reader object. This method differs from the setCharacterStream (int, Reader) method because it informs the driver that the parameter value should be sent to the server as a NCLOB. When the setCharacterStream method is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as a LONGNVARCHAR or a NCLOB

<B>Note:</B> Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setNClob which takes a length parameter.

Added in 1.6.

Java documentation for java.sql.CallableStatement.setNClob(java.lang.String, java.io.Reader).

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

SetNClob(String, INClob)

Sets the designated parameter to a java.sql.NClob object.

[Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/sql/NClob;)V", "GetSetNClob_Ljava_lang_String_Ljava_sql_NClob_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void SetNClob (string? parameterName, Java.Sql.INClob? value);
[<Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/sql/NClob;)V", "GetSetNClob_Ljava_lang_String_Ljava_sql_NClob_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SetNClob : string * Java.Sql.INClob -> unit

Parameters

parameterName
String

the name of the parameter to be set

value
INClob

the parameter value

Attributes

Exceptions

if a database error occurs

Remarks

Sets the designated parameter to a java.sql.NClob object. The object implements the java.sql.NClob interface. This NClob object maps to a SQL NCLOB.

Added in 1.6.

Java documentation for java.sql.CallableStatement.setNClob(java.lang.String, java.sql.NClob).

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

SetNClob(String, Reader, Int64)

Sets the designated parameter to a Reader object.

[Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/io/Reader;J)V", "GetSetNClob_Ljava_lang_String_Ljava_io_Reader_JHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void SetNClob (string? parameterName, Java.IO.Reader? reader, long length);
[<Android.Runtime.Register("setNClob", "(Ljava/lang/String;Ljava/io/Reader;J)V", "GetSetNClob_Ljava_lang_String_Ljava_io_Reader_JHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SetNClob : string * Java.IO.Reader * int64 -> unit

Parameters

parameterName
String

the name of the parameter to be set

reader
Reader

An object that contains the data to set the parameter value to.

length
Int64

the number of characters in the parameter data.

Attributes

Exceptions

if a database error occurs

Remarks

Sets the designated parameter to a Reader object. The reader must contain the number of characters specified by length otherwise a SQLException will be generated when the CallableStatement is executed. This method differs from the setCharacterStream (int, Reader, int) method because it informs the driver that the parameter value should be sent to the server as a NCLOB. When the setCharacterStream method is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as a LONGNVARCHAR or a NCLOB

Added in 1.6.

Java documentation for java.sql.CallableStatement.setNClob(java.lang.String, java.io.Reader, 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