sqlite / injectable_functions /table_injectable_functions.json
AryaWu's picture
Upload folder using huggingface_hub
7510827 verified
[
{
"function_name": "sqlite3_get_table_cb",
"function_signature": "static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv)",
"test_filename": "tests_table_sqlite3_get_table_cb.c"
},
{
"function_name": "sqlite3_get_table",
"function_signature": "int sqlite3_get_table(\n sqlite3 *db, /* The database on which the SQL executes */\n const char *zSql, /* The SQL to be executed */\n char ***pazResult, /* Write the result table here */\n int *pnRow, /* Write the number of rows in the result here */\n int *pnColumn, /* Write the number of columns of result here */\n char **pzErrMsg /* Write error messages here */\n)",
"test_filename": "tests_table_sqlite3_get_table.c"
},
{
"function_name": "sqlite3_free_table",
"function_signature": "void sqlite3_free_table(\n char **azResult /* Result returned from sqlite3_get_table() */\n)",
"test_filename": "tests_table_sqlite3_free_table.c"
}
]