getBytes Method (int)
Retrieves the value of the designated parameter as an array of bytes value given the parameter index.
Syntax
public byte[] getBytes(int index)
Parameters
index
An int that indicates the parameter index.
Return Value
An array of byte values.
Exceptions
Remarks
In the Microsoft SQL Server JDBC Driver 2.0, you could use SQLServerCallableStatement.getBytes 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 getBytes method is specified by the getBytes method in the java.sql.CallableStatement interface.
See Also
Reference
SQLServerCallableStatement Class