setNString Method (int, java.lang.String)

Download JDBC driver

Sets the designated parameter to the specified String object.

Syntax

  
public final void setNString(int parameterIndex,  
                                                  java.lang.String value)  

Parameters

parameterIndex

An int that indicates the parameter index.

value

A String object that contains the parameter value.

Exceptions

SQLServerException

Remarks

This method should be used for NCHAR, NVARCHAR, NTEXT, and XML data types.

This setNString method is specified by the setNString method in the java.sql.PreparedStatement interface.

See Also

SQLServerPreparedStatement Members