-1 Allows for unlimited errors to be reported, so every update in the ClientDataSet's delta will be tried.
0 Allows for no errors at all, which means that no effort is wasted on trying updates after a first failure.
-1 could be appropriate if you have many unrelated changes to pump through to the database. For example when pumping back changes from off-line use in the briefcase model. In this type of scenario, updates may fail because records have in the mean time been updated by other users, but having one update fail will say little or nothing about the chances of the other updates failing. It would then probably be more convenient to let every update be tried and receive back a report of the ones that failed so they can be addressed by the user.
0 probably is better suited in situations where it is fairly predictable that if one update fails, all or many of the other updates in the delta will also fail. It would be "foolhardy" to have the ClientDataSet try the other updates when the likelyhood of them failing as well is high. Must admit though that I have a hard time thinking up a scenario in which this would be the case.