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