Contents Index checkpoint_store synchronization parameter ignored_rows synchronization parameter pdf/preface.pdf

UltraLite User's Guide
  UltraLite Reference
    Synchronization parameters

download_only synchronization parameter


Function 

Do not upload any changes from the UltraLite database during this synchronization.

Default 

The parameter is an optional Boolean value, and by default is false.

C/C++ usage 

Set the parameter as follows:

ul_synch_info info;
// ...
info.download_only = ul_true;
Java usage 

The Java access methods are getDownloadOnly and setDownloadOnly.

Set the parameter as follows:

UlSynchOptions opts = new UlSynchOptions;
opts.setDownloadOnly( true );
 // set other options here
conn.synchronize( opts );
See also 

Including read-only tables in an UltraLite database.

upload_only synchronization parameter


Contents Index checkpoint_store synchronization parameter ignored_rows synchronization parameter pdf/preface.pdf