Contents Index GetSQLCode method GlobalAutoincUsage method pdf/preface.pdf

UltraLite User's Guide
  C++ API Reference
    ULConnection class

GetSynchResult method


Prototype 

bool GetSynchResult( ul_synch_result  * synch-result );

Description 

Stores the results of the most recent synchronization, so that appropriate action can be taken in the application:

The application must allocate a ul_synch_result object before passing it to GetSynchResult. The function fills the ul_synch_result with the result of the last synchronization. These results are stored persistently in the database.

The function is of particular use when synchronizing applications on the Palm Computing Platform using HotSync, as the synchronization takes place outside the application itself. The SQLCODE value set in the call to ULData.PalmLaunch reflects the ULData.PalmLaunch operation itself. The synchronization status and results are written to the HotSync log only. To obtain extended synchronization result information, call GetSynchResult after a successful ULData.PalmLaunch.

Parameters 

synch-result    A structure to hold the synchronization result. It is defined in ulglobal.h as follows:.

typedef struct {
an_sql_code      sql_code; 
ul_stream_error   stream_error; 
ul_bool       upload_ok; 
ul_bool       ignored_rows; 
ul_auth_status   auth_status; 
ul_s_long       auth_value; 
SQLDATETIME   timestamp; 
ul_synch_status   status; 
} ul_synch_result, * p_ul_synch_result;

where the individual members have the following meanings:

Returns 

The method returns a boolean value.

true    Success.

false    Failure.

See also 

PalmLaunch method


Contents Index GetSQLCode method GlobalAutoincUsage method pdf/preface.pdf