The DatabaseEnvironmentConfig type exposes the following members.

Properties

  NameDescription
BlobThreshold
The size in bytes which is used to determine when a data item will be stored as a blob.

Any data item that is equal to or larger in size than the threshold value is automatically stored as a blob.

If the threshold value is 0, databases opened in the environment default to never using blob support.

It is illegal to enable blob support in the environment if any of TxnSnapshot, UseReplication, and UseMVCC is set to true.

EncryptAlgorithm
The algorithm used to perform encryption and decryption.
EncryptionPassword
The password used to perform encryption and decryption.
InitThreadCount
The initial number of concurrent threads catered for by the Berkeley DB environment
InitTxnCount
The initial number of transactions catered for by the Berkeley DB environment
LockTimeout
A value, in microseconds, representing lock timeouts.
MaxTransactions
The number of active transactions supported by the environment. This value bounds the size of the memory allocated for transactions. Child transactions are counted as active until they either commit or abort.
ThreadCount
An approximate number of threads in the database environment.
TxnTimeout
A value, in microseconds, representing transaction timeouts.
TxnTimestamp
Recover to the time specified by timestamp rather than to the most current possible date.

See Also