Put Method

BerkeleyDB

If the database supports duplicates, add the new data value at the end of the duplicate set. If the database supports sorted duplicates, the new data value is inserted at the correct sorted location.

Overload List

  NameDescription
Put(DatabaseEntry, DatabaseEntry)
Store the key/data pair in the database, replacing any previously existing key if duplicates are disallowed, or adding a duplicate data item if duplicates are allowed.
(Inherited from Database.)
Put(DatabaseEntry, DatabaseEntry, Transaction)
Store the key/data pair in the database, replacing any previously existing key if duplicates are disallowed, or adding a duplicate data item if duplicates are allowed.
(Inherited from Database.)

See Also