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

SQL Anywhere 10.0.1 » QAnywhere » QAnywhere SQL API Reference » Message store properties

ml_qa_getstoreproperty Next Page

ml_qa_setstoreproperty


Sets a client message store property.

Parameters

Item

Description

Remarks

1

Property name

VARCHAR(128)

2Property valueSMALLINT
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