Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » QAnywhere » QAnywhere Reference » QAnywhere SQL API reference » Message store properties

 

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