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