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