Berkeley DB Reference Guide:
Access Methods
PrevRefNext

Storing records

The DB->put method stores records into the database. In general, DB->put takes a key and stores the associated data into the database.

There are a few flags that you can set to customize storage:


DB_APPEND DB_NOOVERWRITE

If the database has been configured to support duplicate records, the DB->put method will 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.


PrevRefNext

Copyright (c) 1996,2008 Oracle. All rights reserved.