xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_context_db_handle.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_CONTEXT_DB_HANDLE 3
3.Os
4.Sh NAME
5.Nm sqlite3_context_db_handle
6.Nd database connection for functions
7.Sh SYNOPSIS
8.In sqlite3.h
9.Ft sqlite3 *
10.Fo sqlite3_context_db_handle
11.Fa "sqlite3_context*"
12.Fc
13.Sh DESCRIPTION
14The sqlite3_context_db_handle() interface returns a copy of the pointer
15to the database connection (the 1st parameter) of
16the
17.Fn sqlite3_create_function
18and
19.Fn sqlite3_create_function16
20routines that originally registered the application defined function.
21.Sh IMPLEMENTATION NOTES
22These declarations were extracted from the
23interface documentation at line 5891.
24.Bd -literal
25SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
26.Ed
27.Sh SEE ALSO
28.Xr sqlite3 3 ,
29.Xr sqlite3_create_function 3
30