SecondaryQueueDatabase Methods

BerkeleyDB

The SecondaryQueueDatabase type exposes the following members.

Methods

  NameDescription
CloseOverloaded.

Although closing a database will close any open cursors, it is recommended that applications explicitly close all their Cursor objects before closing the database. The reason why is that when the cursor is explicitly closed, the memory allocated for it is reclaimed; however, this will not happen if you close a database while cursors are still opened.

The same rule, for the same reasons, hold true for Transaction objects. Simply make sure you resolve all your transaction objects before closing your database handle.

Because key/data pairs are cached in memory, applications should make a point to always either close database handles or sync their data to disk (using Sync()()() before exiting, to ensure that any data cached in main memory are reflected in the underlying file system.

When called on a database that is the primary database for a secondary index, the primary database should be closed only after all secondary indices referencing it have been closed.

When multiple threads are using the object concurrently, only a single thread may call the Close method.

The object may not be accessed again after Close is called, regardless of its outcome.

CursorOverloaded.
DeleteOverloaded.
Dispose
Release the resources held by this object, and close the database if it's still open.
(Inherited from BaseDatabase.)
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
ExistsOverloaded.
GetOverloaded.
GetBothOverloaded.
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
OpenOverloaded.
PrintFastStatsOverloaded.
The statistical information is described by the BTreeStats, HashStats, QueueStats, and RecnoStats classes.
PrintStatsOverloaded.
The statistical information is described by the BTreeStats, HashStats, QueueStats, and RecnoStats classes.
SecondaryCursorOverloaded.
Sync
Flush any cached information to disk.
(Inherited from BaseDatabase.)
ToString
Returns a String that represents the current Object.
(Inherited from Object.)
TruncateOverloaded.
When called on a database configured with secondary indices, Truncate will truncate the primary database and all secondary indices. A count of the records discarded from the primary database is returned.

See Also