Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
指定されたメッセージプロパティを SQL TINYINT データ型で設定します。
メッセージの送信後にこのプロパティを変更することはできません。
次の例では、メッセージを作成し、byte 型プロパティ mybyteproperty1 と mybyteproperty2 を設定して、アドレス clientid\queuename に送信します。
begin declare @msgid varchar(128); set @msgid = ml_qa_createmessage(); call ml_qa_setbyteproperty( @msgid, 'mybyteproperty1', 0 ); call ml_qa_setbyteproperty( @msgid, 'mybyteproperty2', 255 ); call ml_qa_putmessage( @msgid, 'clientid\queuename' ); commit; end