Disable Concurrency synchronization parameter

Disallows database access from other threads during synchronization.

Syntax

This parameter is specified in the additional_parms field in the synchronization parameters. The syntax varies depending on the API you use.

Default

False (allowing concurrent database access). Data access is read-only during the upload phase, and read-write otherwise.

Allowed values

Boolean

See also
Example

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

ul_synch_info info;
// ...
info.additional_parms = UL_TEXT( "DisableConcurrency=1" );