I want to create a new data object, save it to the database and then "pass it around" to other classes/methods for READ-ONLY use. I don't want any other accesses to the database from this object to be required after I've saved the object.
In other words, I want to ensure that downstream classes/methods will be able to use this data object even if the database is down. Is this possible or will Torque requery/require the database to be active to act on this data object in a read-only manner? Thanks, David Sica