Open the database with support for multiversion concurrency control.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public bool UseMVCC
Visual Basic (Declaration)
Public UseMVCC As Boolean
Visual C++
public:
bool UseMVCC

Remarks

This will cause updates to the database to follow a copy-on-write protocol, which is required to support snapshot isolation. This settting requires that the database be transactionally protected during its open and is not supported by the queue format.

See Also