Synchronize function

Synopsis
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.

Remarks

Synchronizes the database.

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 );