ReadUncommitted Field

BerkeleyDB

Support transactional read operations with degree 1 isolation.

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

Syntax

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

Remarks

Read operations on the database may request the return of modified but not yet committed data. This flag must be specified on all database objects used to perform dirty reads or database updates, otherwise requests for dirty reads may not be honored and the read may block.

See Also