setBytes Method (SQLServerCallableStatement)

Sets the designated parameter to the given array of byte values.

Syntax

public void setBytes(java.lang.String sCol,
                     byte[] b)

Parameters

sCol

A String that contains the parameter name.

b

An array of byte values.

Exceptions

SQLServerException

Remarks

In the Microsoft SQL Server JDBC Driver 2.0, you could use SQLServerCallableStatement.setBytes to convert values between byte arrays and SQL Server data type date, time, datetime2, or datetimeoffset. In SQL Server JDBC Driver 3.0, using this method with those data types will cause an exception indicating that the conversion is not supported.

This setBytes method is specified by the setBytes method in the java.sql.CallableStatement interface.

See Also

Reference

SQLServerCallableStatement Class

Concepts

SQLServerCallableStatement Members