|
int sqlite3_create_module( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ const sqlite3_module *, /* Methods for the module */ void * /* Client data for xCreate/xConnect */ );
Important: This interface is experimental and is subject to change without notice.
This routine is used to register a new module name with a database connection. Module names must be registered before creating new virtual tables on the module, or before using preexisting virtual tables of the module.
This interface is experimental and is subject to change or removal in future releases of SQLite.
See also lists of Objects, Constants, and Functions.