Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.78 KB

File metadata and controls

49 lines (35 loc) · 1.78 KB
title updateBytes Method (java.lang.String, byte)
description updateBytes Method (java.lang.String, byte)
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference
apilocation sqljdbc.jar
apiname SQLServerResultSet.updateBytes (java.lang.String, byte[])
apitype Assembly

updateBytes Method (java.lang.String, byte)

[!INCLUDEDriver_JDBC_Download]

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

Syntax

  
public void updateBytes(java.lang.String columnName,  
                        byte[] x)  

Parameters

columnName

A String that contains the column name.

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 a previous version of [!INCLUDEjdbcNoVersion], you could use SQLServerResultSet.updateBytes 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.

See Also

updateBytes Method (SQLServerResultSet)
SQLServerResultSet Members
SQLServerResultSet Class