If true, Berkeley DB does not write log records for this database.
Namespace:
BerkeleyDBAssembly: libdb_dotnet181 (in libdb_dotnet181.dll) Version: 18.1.32.0
Syntax
Remarks
If Berkeley DB does not write log records, updates of this database
exhibit the ACI (atomicity, consistency, and isolation)
properties, but not D (durability); database integrity
persists if the application or system does not fail.
The database file must be verified and/or restored
from backup after a failure. In order to ensure integrity after
application shut down, the database must be synced when closed, or
all database changes must be flushed from the database environment
cache using either
Checkpoint()()() or
SyncMemPool()()(). All database objects
for a single physical file must set NonDurableTxns, including
database objects for different databases in a physical file.