returns a transient copy of a persistent object with all members set to the values that are currently stored to the database.
[Visual Basic] Function peekPersisted( _ ByVal _object As Object, _ ByVal depth As Integer, _ ByVal committed As Boolean _ ) As Object [C#] object peekPersisted( object _object, int depth, bool committed ); [C++] Object* peekPersisted( Object* _object, int depth, bool committed ); [JScript] function peekPersisted( Object _object, int depth, bool committed ): Object;
the object
returns a transient copy of a persistent object with all members set to the values that are currently stored to the database.
The returned objects have no connection to the database.
With the
committedparameter it is possible to specify, whether the desired object should contain the committed values or the values that were set by the running transaction with com.db4o.ObjectContainer.set .
ExtObjectContainer Interface | com.db4o.ext Namespace