|
DBC
|
|
#include <db.h>
typedef struct __dbc DBC;
Description
The DBC object is the handle for a cursor into a Berkeley DB database.
The handle is not free-threaded, and cursors may not span threads; nor
may cursors be used by more than a single thread. If the cursor is to
be used to perform operations on behalf of a transaction, the cursor
must be opened and closed within the context of that single transaction.
Once DBcursor->c_close has been called, the handle may not be accessed
again, regardless of the method's return.
Copyright Sleepycat Software
|