ml_qa_setstoreproperty

Sets a client message store property.

Parameters
Item Description Remarks
1 Property name VARCHAR(128)
2 Property value SMALLINT
Remarks

Client message store properties are readable from every connection to this client message store. The values are synchronized up to the server, as well, where they can be used in transmission rules.

See also
Example

The following example sets the synchronization policy to automatic for the message store:

begin
    call ml_qa_setstoreproperty( 'policy', 'automatic' );
    commit;
end