blob: 3ac64bf3c09e907861fdfbeb6f5db0abdb9b01a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.Dd December 19, 2018
.Dt SQLITE3_DB_RELEASE_MEMORY 3
.Os
.Sh NAME
.Nm sqlite3_db_release_memory
.Nd Free Memory Used By A Database Connection
.Sh SYNOPSIS
.Ft int
.Fo sqlite3_db_release_memory
.Fa "sqlite3*"
.Fc
.Sh DESCRIPTION
The sqlite3_db_release_memory(D) interface attempts to free as much
heap memory as possible from database connection D.
Unlike the sqlite3_release_memory() interface,
this interface is in effect even when the SQLITE_ENABLE_MEMORY_MANAGEMENT
compile-time option is omitted.
.Pp
.Sh SEE ALSO
.Xr sqlite3_release_memory 3
|