Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
指定したカラムの値を、バイト配列を使用して設定します。
public void setBytes(UInt16 cid, Array value)
cid 1 から始まるカラム ID。
value カラムの新しい値。
長さが 16 の SQLType.BINARY 型、SQLType.LONGBINARY 型、または SQLType.UUID 型のカラムの場合に適しています。
サンプル:
var blob = new Array( 3 ); blob[ 0 ] = 78; blob[ 1 ] = 0; blob[ 2 ] = 68; t.setBytes( 1, blob );