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