posted 19 years ago
What you are trying to do is possible. Using Hibernate you could happily retrieve an object from one data model version and store it in another, assuming any extra fields added to the table this object is mapped to are nullable, or use a DEFAULT constraint. You couldn't go the other way though, and remove fields from a table.
To do this you will need retrieve the object, switch SessionFactories, open a session and save the object.
[ September 13, 2005: Message edited by: Paul Sturrock ]