STATUS_MEMORY_USED top-level constant

int const STATUS_MEMORY_USED

This parameter is the current amount of memory checked out using sqlite3_malloc(), either directly or indirectly.

The figure includes calls made to sqlite3_malloc() by the application and internal memory usage by the SQLite library. Auxiliary page-cache memory controlled by SQLITE_CONFIG_PAGECACHE is not included in this parameter. The amount returned is the sum of the allocation sizes as reported by the xSize method in sqlite3_mem_methods.

Implementation

const STATUS_MEMORY_USED = 0;