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

configuration interface for fields of classes.

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

Syntax

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

Remarks

configuration interface for fields of classes.

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

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");
ObjectField of = oc.objectField("fieldName"); of.rename("newFieldName"); of.queryEvaluation(false);