DbProperty Descriptor Element
A dbproperty
element defines a Berkeley DB configuration property for a Freeze database environment.
This element may only appear as a child of a dbenv
element.
The following attributes are supported:
Attribute | Description | Required |
---|---|---|
| The name of the configuration property. | Yes |
| The value of the configuration property. If not defined, the value is an empty string. | No |
Here is an example to demonstrate the use of this element:
XML
<dbenv name="MyEnv" home="/opt/data/db"> <description>A description of the database environment.</description> <dbproperty name="set_cachesize" value="0 52428800 1"/> </dbenv>