xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3session_delete.3 (revision 3117ece4fc4a4ca4489ba793710b60b0d26bab6c)
1.Dd January 24, 2024
2.Dt SQLITE3SESSION_DELETE 3
3.Os
4.Sh NAME
5.Nm sqlite3session_delete
6.Nd delete a session object
7.Sh SYNOPSIS
8.In sqlite3.h
9.Ft void
10.Fo sqlite3session_delete
11.Fa "sqlite3_session *pSession"
12.Fc
13.Sh DESCRIPTION
14Delete a session object previously allocated using
15.Fn sqlite3session_create .
16Once a session object has been deleted, the results of attempting to
17use pSession with any other session module function are undefined.
18.Pp
19Session objects must be deleted before the database handle to which
20they are attached is closed.
21Refer to the documentation for
22.Fn sqlite3session_create
23for details.
24.Sh IMPLEMENTATION NOTES
25These declarations were extracted from the
26interface documentation at line 10990.
27.Bd -literal
28SQLITE_API void sqlite3session_delete(sqlite3_session *pSession);
29.Ed
30.Sh SEE ALSO
31.Xr sqlite3session_create 3
32