|
|
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 */ );
This routine is used to register a new module name with an SQLite connection. Module names must be registered before creating new virtual tables on the module, or before using preexisting virtual tables of the module.
See also lists of Objects, Constants, and Functions.