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

Message store properties Next Page

ml_qa_getstoreproperty


Returns a client message store property.

Parameters

Item

Description

Remarks

1

Property name

VARCHAR(128)

Return value

The property value as LONG VARCHAR.

Remarks

Client message store properties are readable from every connection to this client message store.

See also
Example

The following example gets the current synchronization policy of this message store and outputs it to the database console:

begin
    declare @policy varchar(128);
    set @policy = ml_qa_getstoreproperty( 'policy' );
    message 'the current policy for synchronizing this message store is ' || @policy;
end