You can manually disable the truncate functionality from the build.
Do that by opening the db-X.X.X/build_wince/db_config.h
file, and change the line that reads
#define HAVE_FTRUCATE 1
to read
#undef HAVE_FTRUNCATE
Making this change disables DB->compact() for btree databases.
The Windows Mobile platform does not have a concept of a working directory. This means that the DB_ARCH_REMOVE and DB_ARCH_ABS flags do not work properly within Windows Mobile, because they rely on having a working directory.
To work around this issue, you can call log_archive with the DB_ARCH_LOG flag, the list of returned file handles will not contain absolute paths. Your application can take this list of files, construct absolute paths, and delete the files.
Yes.
Berkeley DB relies on a subset of the Windows API, and some standard C library APIs. These are provided by Windows CE. Windows Mobile is built "on top" of Windows CE.
Yes.
Berkeley DB relies on a subset of the Windows API, and some standard C library APIs. These are provided by Windows CE.
The supplied sample applications were developed for the Pocket PC 2003 emulator. They are known to work on real pocket PC devices and later versions of the emulator as well.
The supplied applications are not designed to work with Smartphone devices. The screen size and input mechanisms are not compatible.
The default behavior of Berkeley DB is to use memory mapped files in the environment. Windows Mobile does not allow memory mapped files to be created on flash storage.
There are two workarounds: