AryaWu/sqlite
0
1[2 {3 "function_name": "sqlite3LoadExtension",4 "function_signature": "static int sqlite3LoadExtension(\n sqlite3 *db, /* Load the extension into this database connection */\n const char *zFile, /* Name of the shared library containing extension */\n const char *zProc, /* Entry point. Use \"sqlite3_extension_init\" if 0 */\n char **pzErrMsg /* Put error message here if not 0 */\n)",5 "test_filename": "tests_loadext_sqlite3LoadExtension.c"6 },7 {8 "function_name": "sqlite3_load_extension",9 "function_signature": "int sqlite3_load_extension(\n sqlite3 *db, /* Load the extension into this database connection */\n const char *zFile, /* Name of the shared library containing extension */\n const char *zProc, /* Entry point. Use \"sqlite3_extension_init\" if 0 */\n char **pzErrMsg /* Put error message here if not 0 */\n)",10 "test_filename": "tests_loadext_sqlite3_load_extension.c"11 },12 {13 "function_name": "sqlite3_enable_load_extension",14 "function_signature": "int sqlite3_enable_load_extension(sqlite3 *db, int onoff)",15 "test_filename": "tests_loadext_sqlite3_enable_load_extension.c"16 },17 {18 "function_name": "sqlite3_auto_extension",19 "function_signature": "int sqlite3_auto_extension(\n void (*xInit)(void)\n)",20 "test_filename": "tests_loadext_sqlite3_auto_extension.c"21 },22 {23 "function_name": "sqlite3_cancel_auto_extension",24 "function_signature": "int sqlite3_cancel_auto_extension(\n void (*xInit)(void)\n)",25 "test_filename": "tests_loadext_sqlite3_cancel_auto_extension.c"26 },27 {28 "function_name": "sqlite3_reset_auto_extension",29 "function_signature": "void sqlite3_reset_auto_extension(void)",30 "test_filename": "tests_loadext_sqlite3_reset_auto_extension.c"31 },32 {33 "function_name": "sqlite3AutoLoadExtensions",34 "function_signature": "void sqlite3AutoLoadExtensions(sqlite3 *db)",35 "test_filename": "tests_loadext_sqlite3AutoLoadExtensions.c"36 }37]