updateBytes Method (int, byte[])

Updates the designated column with an array of byte values given the column index.

Syntax

public void updateBytes(int index,
                        byte[] x)

Parameters

index

An int that indicates the column index.

x

An array of byte values.

Exceptions

SQLServerException

Remarks

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

In the Microsoft SQL Server JDBC Driver 2.0, you could use SQLServerResultSet.updateBytes 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.

See Also

Reference

SQLServerResultSet Class

Concepts

updateBytes Method (SQLServerResultSet)

SQLServerResultSet Members