Dbc::put |
#include <db_cxx.h>int Dbc::put(Dbt *key, Dbt *data, u_int32_t flags);
The Dbc::put method stores key/data pairs into the database.
The flags parameter must be set to one of the following values:
In the case of the Recno access method, it is an error to specify DB_AFTER if the underlying Recno database was not created with the DB_RENUMBER flag. If the DB_RENUMBER flag was specified, a new key is created, all records after the inserted item are automatically renumbered, and the key of the new record is returned in the structure referenced by the parameter key. The initial value of the key parameter is ignored. See Db::open for more information.
In the case of the Queue access method, it is always an error to specify DB_AFTER.
If the current cursor record has already been deleted and the underlying access method is Hash, Dbc::put will return DB_NOTFOUND. If the underlying access method is Btree or Recno, the operation will succeed.
If the cursor is not yet initialized or a duplicate sort function has been specified, the Dbc::put function will return EINVAL.
In the case of the Recno access method, it is an error to specify DB_BEFORE if the underlying Recno database was not created with the DB_RENUMBER flag. If the DB_RENUMBER flag was specified, a new key is created, the current record and all records after it are automatically renumbered, and the key of the new record is returned in the structure referenced by the parameter key. The initial value of the key parameter is ignored. See Db::open for more information.
In the case of the Queue access method, it is always an error to specify DB_BEFORE.
If the current cursor record has already been deleted and the underlying access method is Hash, Dbc::put will return DB_NOTFOUND. If the underlying access method is Btree or Recno, the operation will succeed.
If the cursor is not yet initialized or a duplicate sort function has been specified, Dbc::put will return EINVAL.
If a duplicate sort function has been specified and the data item of the current referenced key/data pair does not compare equally to the data parameter, Dbc::put will return EINVAL.
If the current cursor record has already been deleted and the underlying access method is Hash, Dbc::put will return DB_NOTFOUND. If the underlying access method is Btree, Queue or Recno, the operation will succeed.
If the cursor is not yet initialized, Dbc::put will return EINVAL.
If the key already exists in the database, and a duplicate sort function has been specified, the inserted data item is added in its sorted location. If the key already exists in the database, and no duplicate sort function has been specified, the inserted data item is added as the first of the data items for that key.
The DB_KEYFIRST flag may not be specified to the Queue or Recno access methods.
If the key already exists in the database, and a duplicate sort function has been specified, the inserted data item is added in its sorted location. If the key already exists in the database, and no duplicate sort function has been specified, the inserted data item is added as the last of the data items for that key.
The DB_KEYLAST flag may not be specified to the Queue or Recno access methods.
The DB_NODUPDATA flag may not be specified to the Queue or Recno access methods.
Otherwise, the Dbc::put method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success.
If Dbc::put fails for any reason, the state of the cursor will be unchanged. If Dbc::put succeeds and an item is inserted into the database, the cursor is always positioned to reference the newly inserted item.
The Dbc::put method may fail and throw an exception or return a non-zero error for the following conditions:
The DB_BEFORE or DB_AFTER flags were specified, and the underlying access method is Queue.
An attempt was made to add a record to a fixed-length database that was too large to fit.
The Dbc::put method may fail and throw an exception or return a non-zero error for errors specified for other Berkeley DB and C library or system methods. If a catastrophic error has occurred, the Dbc::put method may fail and either return DB_RUNRECOVERY or throw an exception encapsulating DB_RUNRECOVERY, in which case all subsequent Berkeley DB calls will fail in the same way.