sqlite3_create_module
fn
int sqlite3_create_module(
sqlite3 * db, /* SQLite connection to register module with */
const(char) * zName, /* Name of the module */
const(sqlite3_module) * p, /* Methods for the module */
void * pClientData /* Client data for xCreate/xConnect */
)CAPI3REF: Register A Virtual Table Implementation