Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
メッセージにテキストの内容を設定します。
メッセージの送信後にこの内容を変更することはできません。
次の例では、メッセージを作成してから、指定された内容を設定します。
begin declare @msgid varchar(128); set @msgid = ml_qa_createmessage(); call ml_qa_settextcontent( @msgid, 'my simple message' ); call ml_qa_putmessage( @msgid, 'clientid\queuename' ); commit; end