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

SQL Anywhere 10.0.1 » UltraLite - C and C++ Programming » Embedded SQL API Reference

ULIsSynchronizeMessage function Next Page

ULResetLastDownloadTime function


Resets the last download time so that the application resynchronizes previously downloaded data.

Syntax

void ULResetLastDownloadTime(
SQLCA * sqlca,
ul_publication_mask publication-mask );

Parameters

sqlca    A pointer to the SQLCA.

publication-mask    A set of OR'd publications supplied as a mask. Use 0 to reset all publications in the entire database. For example, the following mask corresponds to publications PUB1 and PUB2.:

UL_PUB_PUB1 | UL_PUB_PUB2
Example

The following function call resets the last download time for all tables:

ULResetLastDownloadTime( &sqlca, UL_SYNC_ALL );
See also