Manual Page Result
0
Command: sqlite3_module | Section: 3 | Source: NetBSD | File: sqlite3_module.3
SQLITE3_MODULE(3) FreeBSD Library Functions Manual SQLITE3_MODULE(3)
NAME
sqlite3_module - Virtual Table Object
SYNOPSIS
struct sqlite3_module;
DESCRIPTION
This structure, sometimes called a "virtual table module", defines the
implementation of a virtual tables. This structure consists mostly of
methods for the module.
A virtual table module is created by filling in a persistent instance of
this structure and passing a pointer to that instance to
sqlite3_create_module() or sqlite3_create_module_v2(). The registration
remains valid until it is replaced by a different module or until the
database connection closes. The content of this structure must not
change while it is registered with any database connection.
SEE ALSO
sqlite3(3), sqlite3_create_module(3)
FreeBSD 14.1-RELEASE-p8 December 19, 2018 FreeBSD 14.1-RELEASE-p8