Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Sets the value for the specified column using an array of bytes.
public void setBytes(UInt16 cid, Array value)
cid The 1-based column ID.
value The new value for the column.
Suitable for columns of type SQLType.BINARY, SQLType.LONGBINARY, or for columns of type SQLType.UUID when value is of length 16.
Sample:
var blob = new Array( 3 ); blob[ 0 ] = 78; blob[ 1 ] = 0; blob[ 2 ] = 68; t.setBytes( 1, blob );