Hi.
I am starting to explore Microsoft Sync Framework to use it to synchronize Oracle Dbs.
So, I have downloaded the sample for Oracle and SQL CE
http://code.msdn.microsoft.com/Release/ProjectReleases.aspx?ProjectName=sync&ReleaseId=3761
and changed it to sync 2 Oracle databases.
When I am making insert-insert conflict, by inserting items with identical Ids, and then sychronize, I receive exception:
Microsoft.Synchronization.Data.DbSyncException: Cannot find a value to set for command parameter 'selectedRow'. Ensure that the schemas of the tables being synchronized are consistent, and that the configuration for this scope is correct.
Also, this acception appears on delete-delete conflict, I don't know, maybe anywhere else.
ApplyChangeFailed event of the Provider is not triggered, programm throws this exception when
Synchronize method of the Orchestrator is called.
Also, original sample project (for SQL CE and Oracle) is also throwing that exception on insert-insert conflict.
I think there is problem with SelectRowCommand of the adapter, but just can't figure it out.
Provider just refuses to solve conflicts.
Any help on the issue?