In the following example, a message is received and the value of double property mydoubleproperty is output to the database
server messages window:
begin
declare @msgid varchar(128);
declare @prop double;
set @msgid = ml_qa_getmessage( 'myaddress' );
set @prop = ml_qa_getdoubleproperty( @msgid, 'mydoubleproperty' );
message 'message property mydoubleproperty is set to ' || @prop;
commit;
end