dbc put |
dbc put [-after] [-before] [-current] [-partial {doff dlen}] data dbc put [-keyfirst] [-keylast] [-partial {doff dlen}] key data
The dbc put command stores the specified key/data pair into the database.
The options are as follows:
In the case of the Recno access method, it is an error to specify -after option if the underlying Recno database was not created with the -renumber option. If the -renumber option 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 berkdb open for more information.
In the case of the Queue access method, it is always an error to specify -after.
If the current cursor record has already been deleted and the underlying access method is Hash, dbc put will throw a Tcl error. If the underlying access method is Btree or Recno, the operation will succeed.
In the case of the Recno access method, it is an error to specify -before if the underlying Recno database was not created with the -before option. If the -before option 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 berkdb open for more information.
In the case of the Queue access method, it is always an error to specify -before.
If the current cursor record has already been deleted and the underlying access method is Hash, dbc put will throw a Tcl error. If the underlying access method is Btree or Recno, the operation will succeed.
If the -dupsort option was specified to berkdb open and the data item of the current referenced key/data pair does not compare equally to the data parameter, dbc put will throw a Tcl error.
If the current cursor record has already been deleted and the underlying access method is Hash, dbc put will throw a Tcl error. If the underlying access method is Btree, Queue or Recno, the operation will succeed.
If the key already exists in the database, and the -dupsort option was specified to berkdb open, the inserted data item is added in its sorted location. If the key already exists in the database, and the -dupsort option was not specified, the inserted data item is added as the first of the data items for that key.
The -keyfirst option may not be specified to the Queue or Recno access methods.
If the key already exists in the database, and the -dupsort option was specified to berkdb open, the inserted data item is added in its sorted location. If the key already exists in the database, and the -dupsort option was not specified, the inserted data item is added as the last of the data items for that key.
The -keylast option may not be specified to the Queue or Recno access methods.
The dlen bytes starting doff bytes from the beginning of the specified key's data record are replaced by the data specified by the data and size structure elements. If dlen is smaller than the length of the supplied data, the record will grow, and if dlen is larger than the length of the supplied data, the record will shrink. If the specified bytes do not exist, the record will be extended using nul bytes as necessary, and the dbc put call will succeed.
It is an error to attempt a partial put using the dbc put command in a database that supports duplicate records. Partial puts in databases supporting duplicate records must be done using a dbc put command.
It is an error to attempt a partial put with differing dlen and supplied data length values in Queue or Recno databases with fixed-length records.
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 command returns 0 on success, and in the case of error, a Tcl error is thrown.