Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.79 KB

File metadata and controls

51 lines (36 loc) · 1.79 KB
title updateCharacterStream Method (int, java.io.Reader) | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
ms.assetid 4dddf885-0482-4776-8e9a-69f6c6270931
author David-Engel
ms.author v-daenge

updateCharacterStream Method (int, java.io.Reader)

[!INCLUDEDriver_JDBC_Download]

Updates the designated column with a character stream value.

Syntax

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

Parameters

columnIndex

An int that indicates the column index.

x

A Reader object.

Exceptions

SQLServerException

Remarks

This updateCharacterStream method is specified by the updateCharacterStream method in the java.sql.ResultSet interface.

This method passes Unicode characters from a Reader object to selected text and binary columns. This includes all text columns and binary, varbinary, varbinary(max), image, and xml columns, but not udt columns.

Using this method for the image, text, and ntext[!INCLUDEssNoVersion] data types might impact performance.

See Also

updateCharacterStream Method (SQLServerResultSet)
SQLServerResultSet Members
SQLServerResultSet Class