File size: 2,003 Bytes
7510827 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
[
{
"function_name": "sqlite3LoadExtension",
"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)",
"test_filename": "tests_loadext_sqlite3LoadExtension.c"
},
{
"function_name": "sqlite3_load_extension",
"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)",
"test_filename": "tests_loadext_sqlite3_load_extension.c"
},
{
"function_name": "sqlite3_enable_load_extension",
"function_signature": "int sqlite3_enable_load_extension(sqlite3 *db, int onoff)",
"test_filename": "tests_loadext_sqlite3_enable_load_extension.c"
},
{
"function_name": "sqlite3_auto_extension",
"function_signature": "int sqlite3_auto_extension(\n void (*xInit)(void)\n)",
"test_filename": "tests_loadext_sqlite3_auto_extension.c"
},
{
"function_name": "sqlite3_cancel_auto_extension",
"function_signature": "int sqlite3_cancel_auto_extension(\n void (*xInit)(void)\n)",
"test_filename": "tests_loadext_sqlite3_cancel_auto_extension.c"
},
{
"function_name": "sqlite3_reset_auto_extension",
"function_signature": "void sqlite3_reset_auto_extension(void)",
"test_filename": "tests_loadext_sqlite3_reset_auto_extension.c"
},
{
"function_name": "sqlite3AutoLoadExtensions",
"function_signature": "void sqlite3AutoLoadExtensions(sqlite3 *db)",
"test_filename": "tests_loadext_sqlite3AutoLoadExtensions.c"
}
] |