db4o

ObjectCallbacks.objectCanUpdate Method 

called before a persisted Object is updated.

[Visual Basic]
Function objectCanUpdate( _ 
   ByVal container As ObjectContainer _ 
) As Boolean
[C#]
bool objectCanUpdate(
   ObjectContainer container
);
[C++]
bool objectCanUpdate(
   ObjectContainer* container
);
[JScript]
function objectCanUpdate(
   ObjectContainer container
): bool;

Parameters

container
the
ObjectContainer
the object is stored in.

Return Value

false to prevent the object from being updated.

Remarks

called before a persisted Object is updated.

See Also

ObjectCallbacks Interface | com.db4o.ext Namespace