Re: editingContext.refaultObjects();
Re: editingContext.refaultObjects();
- Subject: Re: editingContext.refaultObjects();
- From: "Arturo Perez" <email@hidden>
- Date: Thu, 26 Aug 2004 12:55:23 -0400
Justin Tocci wrote:
Sorry, I'm really sketchy on java. I'm trying to use something like
that, but I'm lost as to how to find the object to stick into the
method. I want the object that is going to be commited as a result of
the saveChanges() method. Do you know a way to get the object(s) that
would react to the saveChanges() method?
I think my code needs to look something like:
editingContext.itemsThatAreWaitingToSave(EOEnterpriseObject object);
EOEditingContext.saveChanges();
EOEditingContext.refreshObject(object)
NSMutableArray a = new NSMutableArray();
a.addObjects(ec.insertedObjects());
a.addObjects(ec.deletedObjects());
a.addObjects(ec.updatedObjects());
ec.saveChanges();
NSMutableArray gids = new NSMutableArray();
for (int g = 0; g < a.count(); g++)
gids.addObject(ec.globalIDForObject((EOEnterpriseObject)a.objectAtIndex(g)));
ec.invalidateObjectsWithGlobalID(gids);
-arturo
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.