Name
sqlite3_release_memory() — Reduce memory usage
Definition
int sqlite3_release_memory( int bytes );
-
bytes
The requested number of bytes to free.
- Returns
The actual number of bytes to free. This may
be more or less than the requested number.
Description
This function requests that the SQLite library free a specific
amount of memory. SQLite will do this by deallocating
noncritical memory, such as cache space (this includes the page
cache). The memory that is freed may not be contiguous.