Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.83 KB

File metadata and controls

53 lines (40 loc) · 1.83 KB
title getUnicodeStream Method (int) | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
apiname
SQLServerResultSet.getUnicodeStream (int)
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid 0de79b65-a25e-4028-9cc2-7ac02340115b
author David-Engel
ms.author v-daenge

getUnicodeStream Method (int)

[!INCLUDEDriver_JDBC_Download]

Retrieves the value of the designated column index in the current row of this SQLServerResultSet object as a stream of Unicode characters.

Note

This method has been deprecated from the JDBC specification, and calling it will cause a "not implemented" exception to be thrown. Instead, you should use the getCharacterStream method.

Syntax

  
public java.io.InputStream getUnicodeStream(int columnIndex)  

Parameters

columnIndex

An int that indicates the column index.

Return Value

An InputStream object.

Exceptions

SQLServerException

Remarks

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

See Also

getUnicodeStream Method (SQLServerResultSet)
SQLServerResultSet Members
SQLServerResultSet Class