setBytesParameter method

Sets the value for the specified parameter using an array of bytes.

Syntax
setBytesParameter( UInt16 parameterID, Array value )
Parameters
  • parameterID   The ID number of the parameter. The first parameter in the result set has an ID value of one.

  • value   The new value for the parameter.

Remarks

Suitable for columns of type SQLType.BINARY or SQLType.LONGBINARY only.

Example

The following statement sets a value for the first parameter:

var blob = new Array( 3 );
blob[ 0 ] = 78;
blob[ 1 ] = 0;
blob[ 2 ] = 68;
stmt.setBytesParameter( 1, blob );