Developer Guide for Windows and Windows Mobile

The following issues or updates were identified in this document.

TitleSummary
Clear Synchronization Parameters

The guide provides sample code to clear synchronization parameters after the retrieval of data from an MBO during a synchronization session. The sample code is incorrect because the generated database class does not have a getSynchronizationParameter() method.

The correct sample code is:

<MBO>SynchronizationParameters params = <MBO>.SynchronizationParameters;
params.Delete();
params = <MBO>.SynchronizationParameters; //retrieve the sync parameter instance
params.Param1 = value1; //set new sync parameter value
params.Param2 = value2; //set new sync parameter value
params.Save();