IResultSet.GetNCharacterStream 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
| GetNCharacterStream(Int32) |
Retrieves the value of the designated column in the current row
of this |
| GetNCharacterStream(String) |
Retrieves the value of the designated column in the current row
of this |
GetNCharacterStream(Int32)
Retrieves the value of the designated column in the current row
of this ResultSet object as a
java.io.Reader object.
[Android.Runtime.Register("getNCharacterStream", "(I)Ljava/io/Reader;", "GetGetNCharacterStream_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.IO.Reader? GetNCharacterStream(int columnIndex);
[<Android.Runtime.Register("getNCharacterStream", "(I)Ljava/io/Reader;", "GetGetNCharacterStream_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetNCharacterStream : int -> Java.IO.Reader
Parameters
- columnIndex
- Int32
the first column is 1, the second is 2, ...
Returns
a java.io.Reader object that contains the column
value; if the value is SQL NULL, the value returned is
null in the Java programming language.
- Attributes
Exceptions
Remarks
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object. It is intended for use when accessing NCHAR,NVARCHAR and LONGNVARCHAR columns.
Added in 1.6.
Java documentation for java.sql.ResultSet.getNCharacterStream(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
GetNCharacterStream(String)
Retrieves the value of the designated column in the current row
of this ResultSet object as a
java.io.Reader object.
[Android.Runtime.Register("getNCharacterStream", "(Ljava/lang/String;)Ljava/io/Reader;", "GetGetNCharacterStream_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.IO.Reader? GetNCharacterStream(string? columnLabel);
[<Android.Runtime.Register("getNCharacterStream", "(Ljava/lang/String;)Ljava/io/Reader;", "GetGetNCharacterStream_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetNCharacterStream : string -> Java.IO.Reader
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 java.io.Reader object that contains the column
value; if the value is SQL NULL, the value returned is
null in the Java programming language
- Attributes
Exceptions
Remarks
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object. It is intended for use when accessing NCHAR,NVARCHAR and LONGNVARCHAR columns.
Added in 1.6.
Java documentation for java.sql.ResultSet.getNCharacterStream(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.