The following issues or updates were identified in this document.
Title | Summary |
---|---|
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(); |