Synchronize function

Synchronizes the database.

Syntax
bool UltraLite_Connection_iface::Synchronize(
  ul_synch_info_a * info
)
Parameters
  • info   A pointer to the ul_synch_info structure that holds the synchronization parameters.

Example
ul_synch_info info;
conn->InitSynchInfo( &info );
info.user_name = UL_TEXT( user_name"user_name" );
info.version = UL_TEXT( version"test" );
conn->Synchronize( &info );