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