Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.64 KB

setbytes-method-sqlservercallablestatement.md

File metadata and controls

48 lines (34 loc) · 1.64 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic apilocation apiname apitype
setBytes Method (SQLServerCallableStatement)
setBytes Method (SQLServerCallableStatement)
David-Engel
davidengel
01/19/2017
sql
connectivity
reference
sqljdbc.jar
SQLServerCallableStatement.setBytes
Assembly

setBytes Method (SQLServerCallableStatement)

[!INCLUDEDriver_JDBC_Download]

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 a previous version of the driver, you could use SQLServerCallableStatement.setBytes to convert values between byte arrays and [!INCLUDEssNoVersion] data type date, time, datetime2, or datetimeoffset. Now, 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

SQLServerCallableStatement Members
SQLServerCallableStatement Class