ICallableStatement.SetNClob Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| SetNClob(String, Reader) |
Sets the designated parameter to a <code>Reader</code> object. |
| SetNClob(String, INClob) |
Sets the designated parameter to a <code>java. |
| SetNClob(String, Reader, Int64) |
Sets the designated parameter to a <code>Reader</code> object. |
SetNClob(String, Reader)
Sets the designated parameter to a <code>Reader</code> 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
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 <code>java.
[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
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 <code>Reader</code> 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
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.