what does this errors means?
-
I had this delete button and when i click it this errors comes out.
java.lang.RuntimeException: Number of conflicts while synchronizing: 1 SyncResolver.DELETE_ROW_CONFLICT row 4 more than one row matched delete statement
how can i solve this?
-
I had this delete button and when i click it this errors comes out.
java.lang.RuntimeException: Number of conflicts while synchronizing: 1 SyncResolver.DELETE_ROW_CONFLICT row 4 more than one row matched delete statement
how can i solve this?
You're trying to delete a row which is not identified clearly. There are other rows, which also match your search pattern. So you need to change the way the rows are identified or the way of detecting the row, which has to be deleted. regards Torsten
I never finish anyth...