CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
table_injectable_functions.json17 linesDownload Raw Back to injectable_functions
1[2  {3    "function_name": "sqlite3_get_table_cb",4    "function_signature": "static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv)",5    "test_filename": "tests_table_sqlite3_get_table_cb.c"6  },7  {8    "function_name": "sqlite3_get_table",9    "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)",10    "test_filename": "tests_table_sqlite3_get_table.c"11  },12  {13    "function_name": "sqlite3_free_table",14    "function_signature": "void sqlite3_free_table(\n  char **azResult            /* Result returned from sqlite3_get_table() */\n)",15    "test_filename": "tests_table_sqlite3_free_table.c"16  }17]