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

Upload OK synchronization parameter Next Page

Upload Only synchronization parameter


Indicates that there should be no downloads in the current synchronization, which can save communication time, especially over slow communication links.

Syntax

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

Default

False

Allowed values

Boolean

Conflicts with

Download Only, Ping, and Resume Partial Download

Remarks

When set to true, the client waits for the upload acknowledgment from the MobiLink server, after which it terminates the synchronization session successfully.

See also
Examples

ulsync can set this parameter as an extended synchronization parameter as follows:

ulsync -c DBF=myuldb.udb -k http -e "Username=remoteA;Version=2;UploadOnly = True"

UltraLite for C/C++ applications can set the parameter as follows:

ul_synch_info_a info;
// ...
info.upload_only = ul_true;