...
Code Block | ||||
---|---|---|---|---|
| ||||
Person person; /Assume is an EO that exists
EOEditingContext ec = person.editingContext();
ec.deleteObject(person);
try {
ec.saveChanges();
} catch (Exception e) {
//something bad happened, the delete didn't occur
//well don't just stand there, do something about it!
ec.revert(); // clean up the mess
}
|
NOTE: These examples assume that correct EOEditingContext locking is occuring, ProjectWonder's ERXEC auto-locking is highly recommended.