ml_qa_setlongproperty

Sets the specified message property from a SQL BIGINT data type.

Parameters
Item Description Remarks
1 Message ID VARCHAR(128). You can obtain the message ID from ml_qa_createmessage or ml_qa_getmessage.
2 Property name VARCHAR(128)
3 Property value BIGINT
Remarks

You cannot alter this property after the message has been sent.

See also
Example

In the following example, a message is created, the long properties mylongproperty1 and mylongproperty2 are set, and the message is sent to the address 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