TimeNotGranted Property

BerkeleyDB

If true, database calls timing out based on lock or transaction timeout values will throw LockNotGrantedException instead of DeadlockException.

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

Syntax

C#
public bool TimeNotGranted { get; set; }
Visual Basic (Declaration)
Public Property TimeNotGranted As Boolean
Visual C++
public:
property bool TimeNotGranted {
	bool get ();
	void set (bool value);
}

Remarks

If true, this allows applications to distinguish between operations which have deadlocked and operations which have exceeded their time limits.

See Also