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

SQL Anywhere 10.0.1 » MobiLink - Client Administration » UltraLite Synchronization Parameters and Network Protocol options » Synchronization parameters for UltraLite

Publication synchronization parameter Next Page

PublicationMask synchronization parameter


An OR'd list of publications for which the last download time is retrieved. The set is supplied as a mask.

Syntax

The syntax varies depending on the API you use. You can also set this parameter with ulsync.

Default

0, or synchronize all data

Remarks

Each publication has a binary mask; by OR'ing the masks together, you specify which publications should be synchronized. The special publication mask UL_SYNC_ALL describes all the tables in the database, whether in a publication. The mask UL_SYNC_ALL_PUBS describes all tables in publications in the database.

Note

Since schema changes may update masks, you should use publications titled by name using the Publications synchronization parameter. See Publication synchronization parameter.

See also
Example

To set this parameter in an UltraLite for C/C+ application:

ul_synch_info_a info;
// ...
info.publication = UL_PUB_MYPUB1 | UL_PUB_MYPUB2 ;