The size in bytes which is used to determine when a data item will be stored as a blob.

Any data item that is equal to or larger in size than the threshold value will automatically be stored as a blob.

If the threshold value is 0, databases opened in the environment will default to never using blobs.

It is illegal to enable blob if replication is enabled for the environment.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet60 (in libdb_dotnet60.dll) Version: 6.0.30.0

Syntax

C#
public uint BlobThreshold { get; set; }
Visual Basic (Declaration)
Public Property BlobThreshold As UInteger
Visual C++
public:
property unsigned int BlobThreshold {
	unsigned int get ();
	void set (unsigned int value);
}

See Also