In addition to what Brian said (and he's right as always) the "xyz is not
persisted" message means that the object has not been retrieved from the
database. This happens if the object is new (and hasn't been saved yet) or
was created using get with an invalid id (which just calls new in the
background).
The getMemento() method is a really handy method for debugging (only!), as
you'll see the transfer_isPersisted flag, which tells you if it exists in
the database.

In your case:
<cfset oFirm = getColdBoxOCM().get("Transfer").get
("firm.firm",'38F46204-C504-C3CC-AB7B819CD1D02C25')>
<cfdump var="#oFirm.getMemento()#">

Will show false for the transfer_isPersisted flag.

--~--~---------~--~----~------------~-------~--~----~
Before posting questions to the group please read:
http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer

You received this message because you are subscribed to the Google Groups 
"transfer-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/transfer-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to