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