com.sleepycat.db
Interface DbAppendRecno
public interface DbAppendRecno
An interface specifying a callback function that modifies stored
data based on a generated key.
|
Method Summary |
void |
dbAppendRecno(Db db,
Dbt data,
int recno)
The DbAppendRecno interface is used by the Db.setAppendRecno
method. |
dbAppendRecno
void dbAppendRecno(Db db,
Dbt data,
int recno)
throws DbException
- The DbAppendRecno interface is used by the Db.setAppendRecno
method. The called function may modify the data
Dbt.
- Parameters:
db - the enclosing database handle.data - the data Dbt
to be stored.recno - the generated record number.
- Throws:
DbException - Signals that an exception of some sort
has occurred.