DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

DB->set_append_recno

API Ref

#include <db.h>

int DB->set_append_recno(DB *, int (*db_append_recno_fcn)(DB *dbp, DBT *data, db_recno_t recno));


Description: DB->set_append_recno

When using the DB_APPEND option of the DB->put method, it may be useful to modify the stored data based on the generated key. If a callback function is specified using the DB->set_append_recno method, it will be called after the record number has been selected, but before the data has been stored.

The DB->set_append_recno method configures operations performed using the specified DB handle, not all operations performed on the underlying database.

The DB->set_append_recno method may not be called after the DB->open method is called.

The DB->set_append_recno method returns a non-zero error value on failure and 0 on success.

Parameters

db_append_recno_fcn
The db_append_recno_fcn parameter is a function to call after the record number has been selected but before the data has been stored into the database. The function takes three parameters:
db
The db parameter is the enclosing database handle.
dbt
The dbt parameter is the data DBT to be stored.
recno
The recno parameter is the generated record number.

The called function may modify the data DBT. If the function needs to allocate memory for the data field, the flags field of the returned DBT should be set to DB_DBT_APPMALLOC, which indicates that Berkeley DB should free the memory when it is done with it.

The callback function must return 0 on success and errno or a value outside of the Berkeley DB error name space on failure.

Errors

The DB->set_append_recno method may fail and return one of the following non-zero errors:

EINVAL
If the method was called after DB->open was called; or if an invalid flag value or parameter was specified.

Class

DB

See Also

Databases and Related Methods

APIRef

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.