xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3session_delete.3 (revision 82d56013d7b633d116a93943de88e08335357a7c)
1.Dd December 19, 2018
2.Dt SQLITE3SESSION_DELETE 3
3.Os
4.Sh NAME
5.Nm sqlite3session_delete
6.Nd Delete A Session Object
7.Sh SYNOPSIS
8.Ft void
9.Fo sqlite3session_delete
10.Fa "sqlite3_session *pSession"
11.Fc
12.Sh DESCRIPTION
13Delete a session object previously allocated using sqlite3session_create().
14Once a session object has been deleted, the results of attempting to
15use pSession with any other session module function are undefined.
16.Pp
17Session objects must be deleted before the database handle to which
18they are attached is closed.
19Refer to the documentation for sqlite3session_create()
20for details.
21.Sh SEE ALSO
22.Xr sqlite3session_create 3
23