Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.5 KB

File metadata and controls

46 lines (32 loc) · 1.5 KB
title updateNCharacterStream Method (int, java.io.Reader)
description updateNCharacterStream Method (int, java.io.Reader)
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference

updateNCharacterStream Method (int, java.io.Reader)

[!INCLUDEDriver_JDBC_Download]

Updates the designated column with a character stream value.

Syntax

  
public void updateNCharacterStream(int columnIndex,  
                                  java.io.Reader x)  

Parameters

columnIndex

An int that indicates the column index.

x

A Reader object.

Exceptions

SQLServerException

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.

See Also

updateNCharacterStream Method (SQLServerResultSet)
SQLServerResultSet Members
SQLServerResultSet Class