hamsterdb Embedded Database 1.1.14
|
Defines | |
#define | HAM_DAM_RANDOM_WRITE 0x0001 |
#define | HAM_DAM_SEQUENTIAL_INSERT 0x0002 |
#define | HAM_DAM_ENFORCE_PRE110_FORMAT 0x8000 |
which can be passed in the HAM_PARAM_DATA_ACCESS_MODE parameter when creating a new Database (see ham_create_ex) or opening an existing Database (see ham_open_ex).
#define HAM_DAM_ENFORCE_PRE110_FORMAT 0x8000 |
Definition at line 304 of file hamsterdb.h.
#define HAM_DAM_RANDOM_WRITE 0x0001 |
Assume random access (a mixed bag of random insert and delete).
This is the default setting for (non-RECNO) Databases created with versions newer than 1.0.9.
Note: RECNO-based Databases will start in the implicit HAM_DAM_SEQUENTIAL_INSERT mode instead.
This flag is non persistent.
Definition at line 291 of file hamsterdb.h.
#define HAM_DAM_SEQUENTIAL_INSERT 0x0002 |
Assume sequential insert (and few or no delete) operations.
This is the default setting for RECNO based Databases created with versions newer than 1.0.9.
This flag is non persistent.
Definition at line 301 of file hamsterdb.h.