Updates the designated column with a character stream value.
Note:
This feature is introduced starting with the Microsoft SQL Server JDBC Driver version 2.0.
Syntax
public void updateNCharacterStream(java.lang.String columnLabel, java.io.Reader reader)
Parameters
columnLabel
A String that contains the column label.
reader
A Reader object.
Exceptions
Remarks
This updateNCharacterStream method is specified by the updateNCharacterStream method in the java.sql.ResultSet interface.
This method passes Unicode characters from a Reader object to selected nchar, nvarchar(max), ntext and xml columns. Using this method on other data type columns will throw an exception.