Dbc.put

						import com.sleepycat.db.*;
						public void put(Dbt key, Dbt data, int flags)
						throws DbException;
					

Description

The Dbc.put method stores key/data pairs into the database.

The flags parameter must be set to one of the following values:

  • Db.DB_AFTER In the case of the Btree and Hash access methods, insert the data element as a duplicate element of the key referenced by the cursor. The new element appears immediately after the current cursor position. It is an error to specify Db.DB_AFTER if the underlying Btree or Hash database does not support duplicate data items. The key parameter is ignored.

    In the case of the Recno access method, it is an error to specify Db.DB_AFTER if the underlying Recno database was not created with the DB_RENUMBER ...

Get Berkeley DB now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.