Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - C and C++ Programming » UltraLite C++ API Reference » UltraLite_Connection_iface class

Synchronize function Next Page

Synchronize function


Synopsis

bool UltraLite_Connection_iface::Synchronize()

Remarks

Synchronizes the database with the synch info previously stored in the database by SetSynchInfo function.

Example:

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