ErrorPrefix Property

BerkeleyDB

The prefix string that appears before error messages issued by Berkeley DB.

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

Syntax

C#
public string ErrorPrefix { get; set; }
Visual Basic (Declaration)
Public Property ErrorPrefix As String
Visual C++
public:
property String^ ErrorPrefix {
	String^ get ();
	void set (String^ value);
}

Remarks

For databases opened inside of a DatabaseEnvironment, setting ErrorPrefix affects the entire environment and is equivalent to setting ErrorPrefix.

Setting ErrorPrefix configures operations performed using the specified object, not all operations performed on the underlying database.

See Also