[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

configuration interface for classes.

Namespace: Db4objects.Db4o.Config
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Public Interface IObjectClass
C#
public interface IObjectClass
Visual C++
public interface class IObjectClass

Remarks

configuration interface for classes.

Examples: ../com/db4o/samples/translators/Default.java.

Use the global Configuration object to configure db4o before opening an ObjectContainer .

Example:
 Copy imageCopy Code
            Configuration config = Db4o.configure();
ObjectClass oc = config.objectClass("package.className");
oc.updateDepth(3);
oc.minimumActivationDepth(3);