| typedef long long int sqlite_int64 |
| typedef unsigned long long int sqlite_uint64 |
| typedef int(* sqlite3_callback)(void *, int, char **, char **) |
| typedef struct sqlite3_stmt sqlite3_stmt |
| typedef struct sqlite3_context sqlite3_context |
| typedef struct Mem sqlite3_value |
| typedef void(* sqlite3_destructor_type)(void *) |
| typedef struct sqlite3_vtab sqlite3_vtab |
| typedef struct sqlite3_index_info sqlite3_index_info |
| typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor |
| typedef struct sqlite3_module sqlite3_module |
| typedef sqlite_int64 i64 |
| typedef sqlite_uint64 u64 |
| typedef UINT32_TYPE u32 |
| typedef UINT16_TYPE u16 |
| typedef INT16_TYPE i16 |
| typedef UINT8_TYPE u8 |
| typedef UINT8_TYPE i8 |
| typedef struct BusyHandler BusyHandler |
| typedef struct VdbeOpList VdbeOpList |
| typedef unsigned int Pgno |
| typedef struct AuthContext AuthContext |
| typedef struct NameContext NameContext |
| typedef struct ThreadData ThreadData |
| typedef struct TriggerStack TriggerStack |
| typedef struct TriggerStep TriggerStep |
| typedef struct WhereLevel WhereLevel |
| typedef struct afpLockingContext afpLockingContext |
| typedef void flockLockingContext |
| typedef struct dotlockLockingContext dotlockLockingContext |
| typedef void nolockLockingContext |
| typedef struct IntegrityCk IntegrityCk |
| typedef struct QueryCoder QueryCoder |
| typedef struct analysisInfo analysisInfo |
| typedef struct sqlite3_api_routines sqlite3_api_routines |
| typedef struct WhereClause WhereClause |
| typedef struct ExprMaskSet ExprMaskSet |
| typedef struct yyStackEntry yyStackEntry |
| enum sqlite3LockingStyle |
| int sqlite3_libversion_number | ( | void | ) |
| int sqlite3_close | ( | sqlite3 * | db | ) |
| int sqlite3_exec | ( | sqlite3 * | db, | |
| const char * | sql, | |||
| sqlite3_callback | xCallback, | |||
| void * | pArg, | |||
| char ** | errmsg | |||
| ) |
| int sqlite3_extended_result_codes | ( | sqlite3 * | db, | |
| int | onoff | |||
| ) |
| sqlite_int64 sqlite3_last_insert_rowid | ( | sqlite3 * | db | ) |
| int sqlite3_changes | ( | sqlite3 * | db | ) |
| int sqlite3_total_changes | ( | sqlite3 * | db | ) |
| void sqlite3_interrupt | ( | sqlite3 * | db | ) |
| int sqlite3_complete16 | ( | const void * | sql | ) |
| int sqlite3_busy_handler | ( | sqlite3 * | db, | |
| int(*)(void *, int) | xBusy, | |||
| void * | pArg | |||
| ) |
| int sqlite3_busy_timeout | ( | sqlite3 * | db, | |
| int | ms | |||
| ) |
| int sqlite3_get_table | ( | sqlite3 * | db, | |
| const char * | sql, | |||
| char *** | resultp, | |||
| int * | nrow, | |||
| int * | ncolumn, | |||
| char ** | errmsg | |||
| ) |
| void sqlite3_free_table | ( | char ** | result | ) |
| void* sqlite3_malloc | ( | int | nByte | ) |
| void* sqlite3_realloc | ( | void * | pOld, | |
| int | nByte | |||
| ) |
| void sqlite3_free | ( | void * | p | ) |
| int sqlite3_set_authorizer | ( | sqlite3 * | db, | |
| int(*)(void *, int, const char *, const char *, const char *, const char *) | xAuth, | |||
| void * | pUserData | |||
| ) |
| void* sqlite3_profile | ( | sqlite3 * | db, | |
| void(*)(void *, const char *, sqlite_uint64) | xProfile, | |||
| void * | pArg | |||
| ) |
| void sqlite3_progress_handler | ( | sqlite3 * | db, | |
| int | nOps, | |||
| int(*)(void *) | xProgress, | |||
| void * | pArg | |||
| ) |
| void* sqlite3_commit_hook | ( | sqlite3 * | db, | |
| int(*)(void *) | xCallback, | |||
| void * | pArg | |||
| ) |
| int sqlite3_errcode | ( | sqlite3 * | db | ) |
| int sqlite3_prepare | ( | sqlite3 * | db, | |
| const char * | zSql, | |||
| int | nBytes, | |||
| sqlite3_stmt ** | ppStmt, | |||
| const char ** | pzTail | |||
| ) |
| int sqlite3_prepare16 | ( | sqlite3 * | db, | |
| const void * | zSql, | |||
| int | nBytes, | |||
| sqlite3_stmt ** | ppStmt, | |||
| const void ** | pzTail | |||
| ) |
| int sqlite3_prepare_v2 | ( | sqlite3 * | db, | |
| const char * | zSql, | |||
| int | nBytes, | |||
| sqlite3_stmt ** | ppStmt, | |||
| const char ** | pzTail | |||
| ) |
| int sqlite3_prepare16_v2 | ( | sqlite3 * | db, | |
| const void * | zSql, | |||
| int | nBytes, | |||
| sqlite3_stmt ** | ppStmt, | |||
| const void ** | pzTail | |||
| ) |
| int sqlite3_bind_blob | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| const void * | zData, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| int sqlite3_bind_double | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| double | rValue | |||
| ) |
| int sqlite3_bind_int | ( | sqlite3_stmt * | p, | |
| int | i, | |||
| int | iValue | |||
| ) |
| int sqlite3_bind_int64 | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| sqlite_int64 | iValue | |||
| ) |
| int sqlite3_bind_null | ( | sqlite3_stmt * | p, | |
| int | i | |||
| ) |
| int sqlite3_bind_text | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| const char * | zData, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| int sqlite3_bind_text16 | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| const void * | zData, | |||
| int | nData, | |||
| void(*)(void *) | xDel | |||
| ) |
| int sqlite3_bind_value | ( | sqlite3_stmt * | pStmt, | |
| int | i, | |||
| const sqlite3_value * | pValue | |||
| ) |
| int sqlite3_bind_parameter_count | ( | sqlite3_stmt * | pStmt | ) |
| const char* sqlite3_bind_parameter_name | ( | sqlite3_stmt * | pStmt, | |
| int | i | |||
| ) |
| int sqlite3_bind_parameter_index | ( | sqlite3_stmt * | pStmt, | |
| const char * | zName | |||
| ) |
| int sqlite3_clear_bindings | ( | sqlite3_stmt * | pStmt | ) |
| int sqlite3_column_count | ( | sqlite3_stmt * | pStmt | ) |
| const char* sqlite3_column_name | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const void* sqlite3_column_name16 | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const char* sqlite3_column_database_name | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const void* sqlite3_column_database_name16 | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const char* sqlite3_column_table_name | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const void* sqlite3_column_table_name16 | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const char* sqlite3_column_origin_name | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const void* sqlite3_column_origin_name16 | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| const char* sqlite3_column_decltype | ( | sqlite3_stmt * | pStmt, | |
| int | i | |||
| ) |
| const void* sqlite3_column_decltype16 | ( | sqlite3_stmt * | pStmt, | |
| int | N | |||
| ) |
| int sqlite3_step | ( | sqlite3_stmt * | pStmt | ) |
| int sqlite3_data_count | ( | sqlite3_stmt * | pStmt | ) |
| const void* sqlite3_column_blob | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_column_bytes | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_column_bytes16 | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| double sqlite3_column_double | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_column_int | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| sqlite_int64 sqlite3_column_int64 | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| const unsigned char* sqlite3_column_text | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| const void* sqlite3_column_text16 | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_column_type | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_column_numeric_type | ( | sqlite3_stmt * | , | |
| int | iCol | |||
| ) |
| sqlite3_value* sqlite3_column_value | ( | sqlite3_stmt * | pStmt, | |
| int | iCol | |||
| ) |
| int sqlite3_finalize | ( | sqlite3_stmt * | pStmt | ) |
| int sqlite3_reset | ( | sqlite3_stmt * | pStmt | ) |
| int sqlite3_create_function | ( | sqlite3 * | db, | |
| const char * | zFunctionName, | |||
| int | nArg, | |||
| int | eTextRep, | |||
| void * | p, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xFunc, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xStep, | |||
| void(*)(sqlite3_context *) | xFinal | |||
| ) |
| int sqlite3_create_function16 | ( | sqlite3 * | db, | |
| const void * | zFunctionName, | |||
| int | nArg, | |||
| int | eTextRep, | |||
| void * | p, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xFunc, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xStep, | |||
| void(*)(sqlite3_context *) | xFinal | |||
| ) |
| int sqlite3_aggregate_count | ( | sqlite3_context * | p | ) |
| const void* sqlite3_value_blob | ( | sqlite3_value * | pVal | ) |
| int sqlite3_value_bytes | ( | sqlite3_value * | pVal | ) |
| int sqlite3_value_bytes16 | ( | sqlite3_value * | pVal | ) |
| double sqlite3_value_double | ( | sqlite3_value * | pVal | ) |
| int sqlite3_value_int | ( | sqlite3_value * | pVal | ) |
| sqlite_int64 sqlite3_value_int64 | ( | sqlite3_value * | pVal | ) |
| const unsigned char* sqlite3_value_text | ( | sqlite3_value * | pVal | ) |
| const void* sqlite3_value_text16 | ( | sqlite3_value * | pVal | ) |
| const void* sqlite3_value_text16le | ( | sqlite3_value * | pVal | ) |
| const void* sqlite3_value_text16be | ( | sqlite3_value * | pVal | ) |
| int sqlite3_value_type | ( | sqlite3_value * | pVal | ) |
| int sqlite3_value_numeric_type | ( | sqlite3_value * | pVal | ) |
| void* sqlite3_aggregate_context | ( | sqlite3_context * | p, | |
| int | nBytes | |||
| ) |
| void* sqlite3_user_data | ( | sqlite3_context * | p | ) |
| void* sqlite3_get_auxdata | ( | sqlite3_context * | pCtx, | |
| int | iArg | |||
| ) |
| void sqlite3_set_auxdata | ( | sqlite3_context * | pCtx, | |
| int | iArg, | |||
| void * | pAux, | |||
| void(*)(void *) | xDelete | |||
| ) |
| void sqlite3_result_blob | ( | sqlite3_context * | pCtx, | |
| const void * | z, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3_result_double | ( | sqlite3_context * | pCtx, | |
| double | rVal | |||
| ) |
| void sqlite3_result_error | ( | sqlite3_context * | pCtx, | |
| const char * | z, | |||
| int | n | |||
| ) |
| void sqlite3_result_error16 | ( | sqlite3_context * | pCtx, | |
| const void * | z, | |||
| int | n | |||
| ) |
| void sqlite3_result_int | ( | sqlite3_context * | pCtx, | |
| int | iVal | |||
| ) |
| void sqlite3_result_int64 | ( | sqlite3_context * | , | |
| sqlite_int64 | ||||
| ) |
| void sqlite3_result_null | ( | sqlite3_context * | pCtx | ) |
| void sqlite3_result_text | ( | sqlite3_context * | pCtx, | |
| const char * | z, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3_result_text16 | ( | sqlite3_context * | pCtx, | |
| const void * | z, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3_result_text16le | ( | sqlite3_context * | pCtx, | |
| const void * | z, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3_result_text16be | ( | sqlite3_context * | pCtx, | |
| const void * | z, | |||
| int | n, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3_result_value | ( | sqlite3_context * | pCtx, | |
| sqlite3_value * | pValue | |||
| ) |
| int sqlite3_create_collation | ( | sqlite3 * | db, | |
| const char * | zName, | |||
| int | eTextRep, | |||
| void * | pCtx, | |||
| int(*)(void *, int, const void *, int, const void *) | xCompare | |||
| ) |
| int sqlite3_create_collation16 | ( | sqlite3 * | db, | |
| const char * | zName, | |||
| int | eTextRep, | |||
| void * | pCtx, | |||
| int(*)(void *, int, const void *, int, const void *) | xCompare | |||
| ) |
| int sqlite3_collation_needed | ( | sqlite3 * | db, | |
| void * | pCollNeededArg, | |||
| void(*)(void *, sqlite3 *, int eTextRep, const char *) | xCollNeeded | |||
| ) |
| int sqlite3_collation_needed16 | ( | sqlite3 * | db, | |
| void * | pCollNeededArg, | |||
| void(*)(void *, sqlite3 *, int eTextRep, const void *) | xCollNeeded16 | |||
| ) |
| int sqlite3_sleep | ( | int | ms | ) |
| int sqlite3_expired | ( | sqlite3_stmt * | pStmt | ) |
| int sqlite3_transfer_bindings | ( | sqlite3_stmt * | pFromStmt, | |
| sqlite3_stmt * | pToStmt | |||
| ) |
| int sqlite3_global_recover | ( | void | ) |
| int sqlite3_get_autocommit | ( | sqlite3 * | db | ) |
| sqlite3* sqlite3_db_handle | ( | sqlite3_stmt * | pStmt | ) |
| void* sqlite3_update_hook | ( | sqlite3 * | db, | |
| void(*)(void *, int,char const *, char const *, sqlite_int64) | xCallback, | |||
| void * | pArg | |||
| ) |
| void* sqlite3_rollback_hook | ( | sqlite3 * | db, | |
| void(*)(void *) | xCallback, | |||
| void * | pArg | |||
| ) |
| int sqlite3_enable_shared_cache | ( | int | enable | ) |
| int sqlite3_release_memory | ( | int | n | ) |
| void sqlite3_soft_heap_limit | ( | int | n | ) |
| void sqlite3_thread_cleanup | ( | void | ) |
| int sqlite3_table_column_metadata | ( | sqlite3 * | db, | |
| const char * | zDbName, | |||
| const char * | zTableName, | |||
| const char * | zColumnName, | |||
| char const ** | pzDataType, | |||
| char const ** | pzCollSeq, | |||
| int * | pNotNull, | |||
| int * | pPrimaryKey, | |||
| int * | pAutoinc | |||
| ) |
| int sqlite3_load_extension | ( | sqlite3 * | db, | |
| const char * | zFile, | |||
| const char * | zProc, | |||
| char ** | pzErrMsg | |||
| ) |
| int sqlite3_enable_load_extension | ( | sqlite3 * | db, | |
| int | onoff | |||
| ) |
| int sqlite3_auto_extension | ( | void * | xEntryPoint | ) |
| void sqlite3_reset_auto_extension | ( | void | ) |
| int sqlite3_create_module | ( | sqlite3 * | db, | |
| const char * | zName, | |||
| const sqlite3_module * | pModule, | |||
| void * | pAux | |||
| ) |
| void sqlite3HashInit | ( | Hash * | pNew, | |
| int | keytype, | |||
| int | copyKey | |||
| ) |
| void sqlite3HashClear | ( | Hash * | pH | ) |
| void sqlite3VdbeCreateCallback | ( | Vdbe * | , | |
| int * | ||||
| ) |
| int sqlite3VdbeAddOp | ( | Vdbe * | p, | |
| int | op, | |||
| int | p1, | |||
| int | p2 | |||
| ) |
| int sqlite3VdbeAddOpList | ( | Vdbe * | p, | |
| int | nOp, | |||
| VdbeOpList const * | aOp | |||
| ) |
| void sqlite3VdbeChangeP1 | ( | Vdbe * | p, | |
| int | addr, | |||
| int | P1 | |||
| ) |
| void sqlite3VdbeChangeP2 | ( | Vdbe * | p, | |
| int | addr, | |||
| int | P2 | |||
| ) |
| void sqlite3VdbeJumpHere | ( | Vdbe * | p, | |
| int | addr | |||
| ) |
| void sqlite3VdbeChangeToNoop | ( | Vdbe * | p, | |
| int | addr, | |||
| int | N | |||
| ) |
| int sqlite3VdbeMakeLabel | ( | Vdbe * | p | ) |
| void sqlite3VdbeDelete | ( | Vdbe * | p | ) |
| void sqlite3VdbeMakeReady | ( | Vdbe * | p, | |
| int | nVar, | |||
| int | nMem, | |||
| int | nCursor, | |||
| int | isExplain | |||
| ) |
| int sqlite3VdbeFinalize | ( | Vdbe * | p | ) |
| void sqlite3VdbeResolveLabel | ( | Vdbe * | p, | |
| int | x | |||
| ) |
| int sqlite3VdbeCurrentAddr | ( | Vdbe * | p | ) |
| void sqlite3VdbeTrace | ( | Vdbe * | p, | |
| FILE * | trace | |||
| ) |
| void sqlite3VdbeResetStepResult | ( | Vdbe * | p | ) |
| int sqlite3VdbeReset | ( | Vdbe * | p | ) |
| void sqlite3VdbeSetNumCols | ( | Vdbe * | p, | |
| int | nResColumn | |||
| ) |
| void sqlite3VdbeCountChanges | ( | Vdbe * | v | ) |
| int sqlite3BtreeClose | ( | Btree * | p | ) |
| int sqlite3BtreeSetBusyHandler | ( | Btree * | p, | |
| BusyHandler * | pHandler | |||
| ) |
| int sqlite3BtreeSetCacheSize | ( | Btree * | p, | |
| int | mxPage | |||
| ) |
| int sqlite3BtreeSetSafetyLevel | ( | Btree * | p, | |
| int | level, | |||
| int | fullSync | |||
| ) |
| int sqlite3BtreeSyncDisabled | ( | Btree * | p | ) |
| int sqlite3BtreeSetPageSize | ( | Btree * | p, | |
| int | pageSize, | |||
| int | nReserve | |||
| ) |
| int sqlite3BtreeGetPageSize | ( | Btree * | p | ) |
| int sqlite3BtreeGetReserve | ( | Btree * | p | ) |
| int sqlite3BtreeSetAutoVacuum | ( | Btree * | p, | |
| int | autoVacuum | |||
| ) |
| int sqlite3BtreeGetAutoVacuum | ( | Btree * | p | ) |
| int sqlite3BtreeBeginTrans | ( | Btree * | p, | |
| int | wrflag | |||
| ) |
| int sqlite3BtreeCommitPhaseTwo | ( | Btree * | p | ) |
| int sqlite3BtreeCommit | ( | Btree * | p | ) |
| int sqlite3BtreeRollback | ( | Btree * | p | ) |
| int sqlite3BtreeBeginStmt | ( | Btree * | p | ) |
| int sqlite3BtreeCommitStmt | ( | Btree * | p | ) |
| int sqlite3BtreeRollbackStmt | ( | Btree * | p | ) |
| int sqlite3BtreeCreateTable | ( | Btree * | p, | |
| int * | piTable, | |||
| int | flags | |||
| ) |
| int sqlite3BtreeIsInTrans | ( | Btree * | p | ) |
| int sqlite3BtreeIsInStmt | ( | Btree * | p | ) |
| int sqlite3BtreeIsInReadTrans | ( | Btree * | p | ) |
| void* sqlite3BtreeSchema | ( | Btree * | p, | |
| int | nBytes, | |||
| void(*)(void *) | xFree | |||
| ) |
| int sqlite3BtreeSchemaLocked | ( | Btree * | p | ) |
| int sqlite3BtreeDropTable | ( | Btree * | p, | |
| int | iTable, | |||
| int * | piMoved | |||
| ) |
| int sqlite3BtreeClearTable | ( | Btree * | p, | |
| int | iTable | |||
| ) |
| int sqlite3BtreeCursor | ( | Btree * | p, | |
| int | iTable, | |||
| int | wrFlag, | |||
| int(*)(void *, int, const void *, int, const void *) | xCmp, | |||
| void * | pArg, | |||
| BtCursor ** | ppCursor | |||
| ) |
| void sqlite3BtreeSetCompare | ( | BtCursor * | pCur, | |
| int(*)(void *, int, const void *, int, const void *) | xCmp, | |||
| void * | pArg | |||
| ) |
| int sqlite3BtreeCloseCursor | ( | BtCursor * | pCur | ) |
| int sqlite3BtreeDelete | ( | BtCursor * | pCur | ) |
| int sqlite3BtreeInsert | ( | BtCursor * | pCur, | |
| const void * | pKey, | |||
| i64 | nKey, | |||
| const void * | pData, | |||
| int | nData, | |||
| int | bias | |||
| ) |
| int sqlite3BtreeFirst | ( | BtCursor * | pCur, | |
| int * | pRes | |||
| ) |
| int sqlite3BtreeLast | ( | BtCursor * | pCur, | |
| int * | pRes | |||
| ) |
| int sqlite3BtreeNext | ( | BtCursor * | pCur, | |
| int * | pRes | |||
| ) |
| int sqlite3BtreeEof | ( | BtCursor * | pCur | ) |
| int sqlite3BtreeFlags | ( | BtCursor * | pCur | ) |
| int sqlite3BtreePrevious | ( | BtCursor * | pCur, | |
| int * | pRes | |||
| ) |
| int sqlite3BtreeCursorInfo | ( | BtCursor * | pCur, | |
| int * | aResult, | |||
| int | upCnt | |||
| ) |
| void sqlite3BtreeCursorList | ( | Btree * | p | ) |
| int sqlite3BtreePageDump | ( | Btree * | p, | |
| int | pgno, | |||
| int | recursive | |||
| ) |
| void sqlite3PagerSetBusyhandler | ( | Pager * | pPager, | |
| BusyHandler * | pBusyHandler | |||
| ) |
| int sqlite3PagerSetPagesize | ( | Pager * | pPager, | |
| int | pageSize | |||
| ) |
| void sqlite3PagerSetCachesize | ( | Pager * | pPager, | |
| int | mxPage | |||
| ) |
| int sqlite3PagerClose | ( | Pager * | pPager | ) |
| int sqlite3PagerRef | ( | DbPage * | pPg | ) |
| int sqlite3PagerUnref | ( | DbPage * | pPg | ) |
| int sqlite3PagerWrite | ( | DbPage * | pDbPage | ) |
| int sqlite3PagerIswriteable | ( | DbPage * | pPg | ) |
| int sqlite3PagerPagecount | ( | Pager * | pPager | ) |
| int sqlite3PagerBegin | ( | DbPage * | pPg, | |
| int | exFlag | |||
| ) |
| int sqlite3PagerCommitPhaseTwo | ( | Pager * | pPager | ) |
| int sqlite3PagerRollback | ( | Pager * | pPager | ) |
| int sqlite3PagerIsreadonly | ( | Pager * | pPager | ) |
| int sqlite3PagerStmtBegin | ( | Pager * | pPager | ) |
| int sqlite3PagerStmtCommit | ( | Pager * | pPager | ) |
| int sqlite3PagerStmtRollback | ( | Pager * | pPager | ) |
| void sqlite3PagerDontRollback | ( | DbPage * | pPg | ) |
| void sqlite3PagerDontWrite | ( | DbPage * | pDbPage | ) |
| int sqlite3PagerRefcount | ( | Pager * | pPager | ) |
| int* sqlite3PagerStats | ( | Pager * | pPager | ) |
| void sqlite3PagerSetSafetyLevel | ( | Pager * | pPager, | |
| int | level, | |||
| int | full_fsync | |||
| ) |
| int sqlite3PagerNosync | ( | Pager * | pPager | ) |
| void sqlite3PagerSetCodec | ( | Pager * | , | |
| void * | *)(void *, void *, Pgno, int, | |||
| void * | ||||
| ) |
| int sqlite3PagerReset | ( | Pager * | ) |
| int sqlite3PagerReleaseMemory | ( | int | nReq | ) |
| void* sqlite3PagerGetData | ( | DbPage * | pPg | ) |
| void* sqlite3PagerGetExtra | ( | DbPage * | pPg | ) |
| int sqlite3PagerLockingMode | ( | Pager * | pPager, | |
| int | eMode | |||
| ) |
| int sqlite3PagerLockstate | ( | Pager * | pPager | ) |
| void sqlite3PagerRefdump | ( | Pager * | pPager | ) |
| void disable_simulated_io_errors | ( | void | ) |
| void enable_simulated_io_errors | ( | void | ) |
| int sqlite3Corrupt | ( | void | ) |
| void * sqlite3Malloc | ( | int | n, | |
| int | doMemManage | |||
| ) |
| void * sqlite3MallocRaw | ( | int | n, | |
| int | doMemManage | |||
| ) |
| void sqlite3Free | ( | void * | ) |
| void * sqlite3Realloc | ( | void * | p, | |
| int | n | |||
| ) |
| void * sqlite3ReallocOrFree | ( | void * | p, | |
| int | n | |||
| ) |
| void sqlite3FreeX | ( | void * | p | ) |
| void * sqlite3MallocX | ( | int | n | ) |
| int sqlite3AllocSize | ( | void * | p | ) |
| void sqlite3SetString | ( | char ** | pz, | |
| ... | ||||
| ) |
| void sqlite3ErrorClear | ( | Parse * | pParse | ) |
| void sqlite3Dequote | ( | char * | z | ) |
| void sqlite3DequoteExpr | ( | Expr * | p | ) |
| void sqlite3FinishCoding | ( | Parse * | pParse | ) |
| void sqlite3ExprDelete | ( | Expr * | p | ) |
| void sqlite3ExprListDelete | ( | ExprList * | pList | ) |
| void sqlite3ResetInternalSchema | ( | sqlite3 * | db, | |
| int | iDb | |||
| ) |
| void sqlite3BeginParse | ( | Parse * | pParse, | |
| int | explainFlag | |||
| ) |
| void sqlite3CommitInternalChanges | ( | sqlite3 * | db | ) |
| void sqlite3OpenMasterTable | ( | Parse * | p, | |
| int | iDb | |||
| ) |
| void sqlite3StartTable | ( | Parse * | pParse, | |
| Token * | pName1, | |||
| Token * | pName2, | |||
| int | isTemp, | |||
| int | isView, | |||
| int | isVirtual, | |||
| int | noErr | |||
| ) |
| void sqlite3AddNotNull | ( | Parse * | pParse, | |
| int | onError | |||
| ) |
| void sqlite3AddPrimaryKey | ( | Parse * | pParse, | |
| ExprList * | pList, | |||
| int | onError, | |||
| int | autoInc, | |||
| int | sortOrder | |||
| ) |
| void sqlite3CreateView | ( | Parse * | pParse, | |
| Token * | pBegin, | |||
| Token * | pName1, | |||
| Token * | pName2, | |||
| Select * | pSelect, | |||
| int | isTemp, | |||
| int | noErr | |||
| ) |
| void sqlite3DeleteTable | ( | Table * | pTable | ) |
| void sqlite3Insert | ( | Parse * | pParse, | |
| SrcList * | pTabList, | |||
| ExprList * | pList, | |||
| Select * | pSelect, | |||
| IdList * | pColumn, | |||
| int | onError | |||
| ) |
| void * sqlite3ArrayAllocate | ( | void * | pArray, | |
| int | szEntry, | |||
| int | initSize, | |||
| int * | pnEntry, | |||
| int * | pnAlloc, | |||
| int * | pIdx | |||
| ) |
| SrcList * sqlite3SrcListAppendFromTerm | ( | SrcList * | p, | |
| Token * | pTable, | |||
| Token * | pDatabase, | |||
| Token * | pAlias, | |||
| Select * | pSubquery, | |||
| Expr * | pOn, | |||
| IdList * | pUsing | |||
| ) |
| void sqlite3SrcListShiftJoinType | ( | SrcList * | p | ) |
| void sqlite3IdListDelete | ( | IdList * | pList | ) |
| void sqlite3SrcListDelete | ( | SrcList * | pList | ) |
| void sqlite3CreateIndex | ( | Parse * | pParse, | |
| Token * | pName1, | |||
| Token * | pName2, | |||
| SrcList * | pTblName, | |||
| ExprList * | pList, | |||
| int | onError, | |||
| Token * | pStart, | |||
| Token * | pEnd, | |||
| int | sortOrder, | |||
| int | ifNotExist | |||
| ) |
| int sqlite3Select | ( | Parse * | pParse, | |
| Select * | p, | |||
| int | eDest, | |||
| int | iParm, | |||
| Select * | pParent, | |||
| int | parentTab, | |||
| int * | pParentAgg, | |||
| char * | aff | |||
| ) |
| Select * sqlite3SelectNew | ( | ExprList * | pEList, | |
| SrcList * | pSrc, | |||
| Expr * | pWhere, | |||
| ExprList * | pGroupBy, | |||
| Expr * | pHaving, | |||
| ExprList * | pOrderBy, | |||
| int | isDistinct, | |||
| Expr * | pLimit, | |||
| Expr * | pOffset | |||
| ) |
| void sqlite3SelectDelete | ( | Select * | p | ) |
| void sqlite3SelectUnbind | ( | Select * | ) |
| void sqlite3Update | ( | Parse * | pParse, | |
| SrcList * | pTabList, | |||
| ExprList * | pChanges, | |||
| Expr * | pWhere, | |||
| int | onError | |||
| ) |
| WhereInfo* sqlite3WhereBegin | ( | Parse * | pParse, | |
| SrcList * | pTabList, | |||
| Expr * | pWhere, | |||
| ExprList ** | ppOrderBy | |||
| ) |
| void sqlite3WhereEnd | ( | WhereInfo * | pWInfo | ) |
| void sqlite3Vacuum | ( | Parse * | pParse | ) |
| int sqliteFuncId | ( | Token * | ) |
| int sqlite3ExprResolveNames | ( | NameContext * | pNC, | |
| Expr * | pExpr | |||
| ) |
| int sqlite3ExprAnalyzeAggregates | ( | NameContext * | pNC, | |
| Expr * | pExpr | |||
| ) |
| int sqlite3ExprAnalyzeAggList | ( | NameContext * | pNC, | |
| ExprList * | pList | |||
| ) |
| void sqlite3Randomness | ( | int | N, | |
| void * | pBuf | |||
| ) |
| void sqlite3RollbackAll | ( | sqlite3 * | db | ) |
| void sqlite3CodeVerifySchema | ( | Parse * | pParse, | |
| int | iDb | |||
| ) |
| void sqlite3BeginTransaction | ( | Parse * | pParse, | |
| int | type | |||
| ) |
| void sqlite3CommitTransaction | ( | Parse * | pParse | ) |
| void sqlite3RollbackTransaction | ( | Parse * | pParse | ) |
| int sqlite3ExprIsConstant | ( | Expr * | p | ) |
| int sqlite3ExprIsConstantOrFunction | ( | Expr * | p | ) |
| int sqlite3ExprIsInteger | ( | Expr * | p, | |
| int * | pValue | |||
| ) |
| void sqlite3GenerateConstraintChecks | ( | Parse * | pParse, | |
| Table * | pTab, | |||
| int | base, | |||
| char * | aIdxUsed, | |||
| int | rowidChng, | |||
| int | isUpdate, | |||
| int | overrideError, | |||
| int | ignoreDest | |||
| ) |
| void sqlite3CompleteInsertion | ( | Parse * | pParse, | |
| Table * | pTab, | |||
| int | base, | |||
| char * | aIdxUsed, | |||
| int | rowidChng, | |||
| int | isUpdate, | |||
| int | newIdx, | |||
| int | appendBias | |||
| ) |
| void sqlite3BeginWriteOperation | ( | Parse * | pParse, | |
| int | setStatement, | |||
| int | iDb | |||
| ) |
| FuncDef* sqlite3FindFunction | ( | sqlite3 * | db, | |
| const char * | zName, | |||
| int | nName, | |||
| int | nArg, | |||
| u8 | enc, | |||
| int | createFlag | |||
| ) |
| void sqlite3RegisterBuiltinFunctions | ( | sqlite3 * | db | ) |
| void sqlite3RegisterDateTimeFunctions | ( | sqlite3 * | db | ) |
| int sqlite3SafetyOn | ( | sqlite3 * | db | ) |
| int sqlite3SafetyOff | ( | sqlite3 * | db | ) |
| int sqlite3SafetyCheck | ( | sqlite3 * | db | ) |
| void sqlite3BeginTrigger | ( | Parse * | pParse, | |
| Token * | pName1, | |||
| Token * | pName2, | |||
| int | tr_tm, | |||
| int | op, | |||
| IdList * | pColumns, | |||
| SrcList * | pTableName, | |||
| Expr * | pWhen, | |||
| int | isTemp, | |||
| int | noErr | |||
| ) |
| void sqlite3FinishTrigger | ( | Parse * | pParse, | |
| TriggerStep * | pStepList, | |||
| Token * | pAll | |||
| ) |
| int sqlite3CodeRowTrigger | ( | Parse * | pParse, | |
| int | op, | |||
| ExprList * | pChanges, | |||
| int | tr_tm, | |||
| Table * | pTab, | |||
| int | newIdx, | |||
| int | oldIdx, | |||
| int | orconf, | |||
| int | ignoreJump | |||
| ) |
| void sqlite3DeleteTriggerStep | ( | TriggerStep * | pTriggerStep | ) |
| TriggerStep * sqlite3TriggerSelectStep | ( | Select * | pSelect | ) |
| TriggerStep * sqlite3TriggerInsertStep | ( | Token * | pTableName, | |
| IdList * | pColumn, | |||
| ExprList * | pEList, | |||
| Select * | pSelect, | |||
| int | orconf | |||
| ) |
| TriggerStep * sqlite3TriggerUpdateStep | ( | Token * | pTableName, | |
| ExprList * | pEList, | |||
| Expr * | pWhere, | |||
| int | orconf | |||
| ) |
| TriggerStep * sqlite3TriggerDeleteStep | ( | Token * | pTableName, | |
| Expr * | pWhere | |||
| ) |
| void sqlite3DeleteTrigger | ( | Trigger * | pTrigger | ) |
| void sqlite3CreateForeignKey | ( | Parse * | pParse, | |
| ExprList * | pFromCol, | |||
| Token * | pTo, | |||
| ExprList * | pToCol, | |||
| int | flags | |||
| ) |
| void sqlite3DeferForeignKey | ( | Parse * | pParse, | |
| int | isDeferred | |||
| ) |
| int sqlite3AuthCheck | ( | Parse * | pParse, | |
| int | code, | |||
| const char * | zArg1, | |||
| const char * | zArg2, | |||
| const char * | zArg3 | |||
| ) |
| void sqlite3AuthContextPush | ( | Parse * | pParse, | |
| AuthContext * | pContext, | |||
| const char * | zContext | |||
| ) |
| void sqlite3AuthContextPop | ( | AuthContext * | pContext | ) |
| int sqlite3BtreeFactory | ( | const sqlite3 * | db, | |
| const char * | zFilename, | |||
| int | omitJournal, | |||
| int | nCache, | |||
| Btree ** | ppBtree | |||
| ) |
| int sqlite3FixInit | ( | DbFixer * | pFix, | |
| Parse * | pParse, | |||
| int | iDb, | |||
| const char * | zType, | |||
| const Token * | pName | |||
| ) |
| int sqlite3FixTriggerStep | ( | DbFixer * | pFix, | |
| TriggerStep * | pStep | |||
| ) |
| int sqlite3utf16ByteLen | ( | const void * | pData, | |
| int | nChar | |||
| ) |
| int sqlite3VarintLen | ( | u64 | v | ) |
| int sqlite3ReadSchema | ( | Parse * | pParse | ) |
| void sqlite3VdbeSetChanges | ( | sqlite3 * | db, | |
| int | nChange | |||
| ) |
| void sqlite3utf16Substr | ( | sqlite3_context * | context, | |
| int | argc, | |||
| sqlite3_value ** | argv | |||
| ) |
| const void* sqlite3ValueText | ( | sqlite3_value * | pVal, | |
| u8 | enc | |||
| ) |
| int sqlite3ValueBytes | ( | sqlite3_value * | pVal, | |
| u8 | enc | |||
| ) |
| void sqlite3ValueSetStr | ( | sqlite3_value * | v, | |
| int | n, | |||
| const void * | z, | |||
| u8 | enc, | |||
| void(*)(void *) | xDel | |||
| ) |
| void sqlite3ValueFree | ( | sqlite3_value * | v | ) |
| sqlite3_value * sqlite3ValueNew | ( | void | ) |
| int sqlite3ValueFromExpr | ( | Expr * | pExpr, | |
| u8 | enc, | |||
| u8 | affinity, | |||
| sqlite3_value ** | ppVal | |||
| ) |
| void sqlite3ValueApplyAffinity | ( | sqlite3_value * | pVal, | |
| u8 | affinity, | |||
| u8 | enc | |||
| ) |
| void sqlite3RootPageMoved | ( | Db * | pDb, | |
| int | iFrom, | |||
| int | iTo | |||
| ) |
| void sqlite3AlterFunctions | ( | sqlite3 * | db | ) |
| void sqlite3ExpirePreparedStatements | ( | sqlite3 * | db | ) |
| int sqlite3SelectResolve | ( | Parse * | pParse, | |
| Select * | p, | |||
| NameContext * | pOuterNC | |||
| ) |
| int sqlite3InvokeBusyHandler | ( | BusyHandler * | p | ) |
| void sqlite3AnalysisLoad | ( | sqlite3 * | db, | |
| int | iDB | |||
| ) |
| void sqlite3DefaultRowEst | ( | Index * | pIdx | ) |
| void sqlite3RegisterLikeFunctions | ( | sqlite3 * | db, | |
| int | caseSensitive | |||
| ) |
| ThreadData * sqlite3ThreadData | ( | void | ) |
| const ThreadData * sqlite3ThreadDataReadOnly | ( | void | ) |
| void sqlite3ReleaseThreadData | ( | void | ) |
| void sqlite3AttachFunctions | ( | sqlite3 * | db | ) |
| void sqlite3MinimumFileFormat | ( | Parse * | pParse, | |
| int | iDb, | |||
| int | minFormat | |||
| ) |
| void sqlite3SchemaFree | ( | void * | p | ) |
| int sqlite3CreateFunc | ( | sqlite3 * | db, | |
| const char * | zFunctionName, | |||
| int | nArg, | |||
| int | enc, | |||
| void * | pUserData, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xFunc, | |||
| void(*)(sqlite3_context *, int, sqlite3_value **) | xStep, | |||
| void(*)(sqlite3_context *) | xFinal | |||
| ) |
| int sqlite3ApiExit | ( | sqlite3 * | db, | |
| int | rc | |||
| ) |
| int sqlite3MallocFailed | ( | void | ) |
| void sqlite3FailedMalloc | ( | void | ) |
| int sqlite3OpenTempDatabase | ( | Parse * | pParse | ) |
| void sqlite3CloseExtensions | ( | sqlite3 * | db | ) |
| int sqlite3AutoLoadExtensions | ( | sqlite3 * | db | ) |
| void sqlite3MallocDisallow | ( | void | ) |
| void sqlite3MallocAllow | ( | void | ) |
| int sqlite3TestMallocFail | ( | void | ) |
| void * sqlite3ThreadSafeMalloc | ( | int | n | ) |
| void sqlite3ThreadSafeFree | ( | void * | p | ) |
| void sqlite3VtabClear | ( | Table * | p | ) |
| int sqlite3VtabSync | ( | sqlite3 * | db, | |
| int | rc | |||
| ) |
| int sqlite3VtabRollback | ( | sqlite3 * | db | ) |
| int sqlite3VtabCommit | ( | sqlite3 * | db | ) |
| void sqlite3VtabLock | ( | sqlite3_vtab * | pVtab | ) |
| void sqlite3VtabUnlock | ( | sqlite3 * | db, | |
| sqlite3_vtab * | pVtab | |||
| ) |
| void sqlite3VtabArgInit | ( | Parse * | pParse | ) |
| int sqlite3VtabBegin | ( | sqlite3 * | db, | |
| sqlite3_vtab * | pVtab | |||
| ) |
| void sqlite3InvalidFunction | ( | sqlite3_context * | context, | |
| int | argc, | |||
| sqlite3_value ** | argv | |||
| ) |
| int sqlite3Reprepare | ( | Vdbe * | p | ) |
| void sqlite3VdbeIOTraceSql | ( | Vdbe * | p | ) |
| int sqlite3OsClose | ( | OsFile ** | pId | ) |
| int sqlite3OsRead | ( | OsFile * | id, | |
| void * | pBuf, | |||
| int | amt | |||
| ) |
| int sqlite3OsSync | ( | OsFile * | id, | |
| int | fullsync | |||
| ) |
| void sqlite3OsSetFullSync | ( | OsFile * | id, | |
| int | setting | |||
| ) |
| int sqlite3OsFileHandle | ( | OsFile * | id | ) |
| int sqlite3OsLock | ( | OsFile * | id, | |
| int | lockType | |||
| ) |
| int sqlite3OsUnlock | ( | OsFile * | id, | |
| int | lockType | |||
| ) |
| int sqlite3OsLockState | ( | OsFile * | id | ) |
| int sqlite3OsCheckReservedLock | ( | OsFile * | id | ) |
| int sqlite3OsIsDirWritable | ( | char * | ) |
| int sqlite3OsSectorSize | ( | OsFile * | id | ) |
| int sqlite3OsTempFileName | ( | char * | ) |
| int sqlite3OsRandomSeed | ( | char * | ) |
| int sqlite3OsSleep | ( | int | ms | ) |
| int sqlite3OsCurrentTime | ( | double * | ) |
| void sqlite3OsEnterMutex | ( | void | ) |
| void sqlite3OsLeaveMutex | ( | void | ) |
| int sqlite3OsInMutex | ( | int | ) |
| ThreadData* sqlite3OsThreadSpecificData | ( | int | ) |
| void* sqlite3OsMalloc | ( | int | ) |
| void* sqlite3OsRealloc | ( | void * | , | |
| int | ||||
| ) |
| void sqlite3OsFree | ( | void * | ) |
| int sqlite3OsAllocationSize | ( | void * | ) |
| int sqlite3OsDlclose | ( | void * | ) |
| struct sqlite3OsVtbl * sqlite3_os_switch | ( | void | ) | [read] |
| void sqliteVdbePopStack | ( | Vdbe * | , | |
| int | ||||
| ) |
| int sqlite3VdbeCursorMoveto | ( | Cursor * | p | ) |
| void sqlite3VdbePrintOp | ( | FILE * | pOut, | |
| int | pc, | |||
| Op * | pOp | |||
| ) |
| void sqlite3VdbePrintSql | ( | Vdbe * | p | ) |
| int sqlite3VdbeSerialTypeLen | ( | u32 | serial_type | ) |
| void sqlite3VdbeDeleteAuxData | ( | VdbeFunc * | pVdbeFunc, | |
| int | mask | |||
| ) |
| int sqlite3VdbeRecordCompare | ( | void * | userData, | |
| int | nKey1, | |||
| const void * | pKey1, | |||
| int | nKey2, | |||
| const void * | pKey2 | |||
| ) |
| int sqlite3VdbeExec | ( | Vdbe * | p | ) |
| int sqlite3VdbeList | ( | Vdbe * | p | ) |
| int sqlite3VdbeHalt | ( | Vdbe * | p | ) |
| int sqlite3VdbeChangeEncoding | ( | Mem * | pMem, | |
| int | desiredEnc | |||
| ) |
| int sqlite3VdbeMemNulTerminate | ( | Mem * | pMem | ) |
| void sqlite3VdbeMemSetNull | ( | Mem * | pMem | ) |
| int sqlite3VdbeMemMakeWriteable | ( | Mem * | pMem | ) |
| int sqlite3VdbeMemDynamicify | ( | Mem * | pMem | ) |
| int sqlite3VdbeMemStringify | ( | Mem * | pMem, | |
| int | enc | |||
| ) |
| int sqlite3VdbeMemIntegerify | ( | Mem * | pMem | ) |
| void sqlite3VdbeIntegerAffinity | ( | Mem * | pMem | ) |
| int sqlite3VdbeMemRealify | ( | Mem * | pMem | ) |
| int sqlite3VdbeMemNumerify | ( | Mem * | pMem | ) |
| void sqlite3VdbeMemRelease | ( | Mem * | p | ) |
| void sqlite3VdbeMemSanity | ( | Mem * | pMem | ) |
| int sqlite3VdbeOpcodeNoPush | ( | u8 | op | ) |
| int sqlite3VdbeMemHandleBom | ( | Mem * | pMem | ) |
| void sqlite3VdbeFifoInit | ( | Fifo * | pFifo | ) |
| void sqlite3VdbeFifoClear | ( | Fifo * | pFifo | ) |
| void sqlite3utfSelfTest | ( | ) |
| int backtrace | ( | void ** | , | |
| int | ||||
| ) |
| int sqlite3OutstandingMallocs | ( | Tcl_Interp * | interp | ) |
| void * sqlite3GenericMalloc | ( | int | n | ) |
| void * sqlite3GenericRealloc | ( | void * | p, | |
| int | n | |||
| ) |
| void sqlite3GenericFree | ( | void * | p | ) |
| int sqlite3GenericAllocationSize | ( | void * | p | ) |
| int sqlite3Os2TempFileName | ( | char * | zBuf | ) |
| int os2Close | ( | OsFile ** | pld | ) |
| int os2Read | ( | OsFile * | id, | |
| void * | pBuf, | |||
| int | amt | |||
| ) |
| int os2Sync | ( | OsFile * | id, | |
| int | dataOnly | |||
| ) |
| int sqlite3Os2IsDirWritable | ( | char * | zDirname | ) |
| int os2Lock | ( | OsFile * | id, | |
| int | locktype | |||
| ) |
| int os2CheckReservedLock | ( | OsFile * | id | ) |
| int os2Unlock | ( | OsFile * | id, | |
| int | locktype | |||
| ) |
| int sqlite3Os2Dlclose | ( | void * | pHandle | ) |
| int sqlite3Os2RandomSeed | ( | char * | zBuf | ) |
| int sqlite3Os2Sleep | ( | int | ms | ) |
| void sqlite3Os2EnterMutex | ( | ) |
| void sqlite3Os2LeaveMutex | ( | ) |
| int sqlite3Os2InMutex | ( | int | thisThreadOnly | ) |
| int sqlite3Os2CurrentTime | ( | double * | prNow | ) |
| ThreadData* sqlite3Os2ThreadSpecificData | ( | int | allocateFlag | ) |
| int sqlite3UnixTempFileName | ( | char * | zBuf | ) |
| int sqlite3UnixIsDirWritable | ( | char * | zBuf | ) |
| int sqlite3UnixDlclose | ( | void * | pHandle | ) |
| int sqlite3UnixRandomSeed | ( | char * | zBuf | ) |
| int sqlite3UnixSleep | ( | int | ms | ) |
| void sqlite3UnixEnterMutex | ( | ) |
| void sqlite3UnixLeaveMutex | ( | ) |
| int sqlite3UnixInMutex | ( | int | thisThrd | ) |
| ThreadData* sqlite3UnixThreadSpecificData | ( | int | allocateFlag | ) |
| int sqlite3UnixCurrentTime | ( | double * | prNow | ) |
| int sqlite3WinTempFileName | ( | char * | zBuf | ) |
| int sqlite3WinIsDirWritable | ( | char * | zDirname | ) |
| int sqlite3WinDlclose | ( | void * | pHandle | ) |
| int sqlite3WinRandomSeed | ( | char * | zBuf | ) |
| int sqlite3WinSleep | ( | int | ms | ) |
| void sqlite3WinEnterMutex | ( | ) |
| void sqlite3WinLeaveMutex | ( | ) |
| int sqlite3WinInMutex | ( | int | thisThreadOnly | ) |
| int sqlite3WinCurrentTime | ( | double * | prNow | ) |
| ThreadData* sqlite3WinThreadSpecificData | ( | int | allocateFlag | ) |
| void sqlite3PagerSetCodec | ( | Pager * | pPager, | |
| void *(*)(void *, void *, Pgno, int) | xCodec, | |||
| void * | pCodecArg | |||
| ) |
| int sqlite3_shared_cache_report | ( | void * | clientData, | |
| Tcl_Interp * | interp, | |||
| int | objc, | |||
| Tcl_Obj *CONST | objv[] | |||
| ) |
| void sqlite3_result_int64 | ( | sqlite3_context * | pCtx, | |
| i64 | iVal | |||
| ) |
| int sqlite3Prepare | ( | sqlite3 * | db, | |
| const char * | zSql, | |||
| int | nBytes, | |||
| int | saveSqlFlag, | |||
| sqlite3_stmt ** | ppStmt, | |||
| const char ** | pzTail | |||
| ) |
| void sqlite3PrintExpr | ( | Expr * | p | ) |
| void sqlite3PrintExprList | ( | ExprList * | pList | ) |
| void sqlite3PrintSelect | ( | Select * | p, | |
| int | indent | |||
| ) |
| void sqlite3ParserTrace | ( | FILE * | TraceFILE, | |
| char * | zTracePrompt | |||
| ) |
| void* sqlite3ParserAlloc | ( | void *(*)(size_t) | mallocProc | ) |
| void sqlite3ParserFree | ( | void * | p, | |
| void(*)(void *) | freeProc | |||
| ) |
| void sqlite3Parser | ( | void * | yyp, | |
| int | yymajor, | |||
| sqlite3ParserTOKENTYPE yyminor | sqlite3ParserARG_PDECL | |||
| ) |
| const char sqlite3_version[] = SQLITE_VERSION |
| const int sqlite3one = 1 |
| int pager3_refinfo_enable = 0 |
| int sqlite3_nMalloc |
| int sqlite3_nFree |
| int sqlite3_iMallocReset = -1 |
| void * sqlite3_pFirst = 0 |
| int sqlite3_nMaxAlloc = 0 |
| int sqlite3_mallocDisallowed = 0 |
| int sqlite3_isFail = 0 |
| const char * sqlite3_zFile = 0 |
| int sqlite3_iLine = 0 |
| const unsigned char sqlite3UpperToLower[] |
| unsigned int sqlite3_pending_byte = 0x40000000 |
struct sqlite3OsVtbl sqlite3Os [read] |
Initial value:
{
IF_DISKIO( sqlite3OsOpenReadWrite ),
IF_DISKIO( sqlite3OsOpenExclusive ),
IF_DISKIO( sqlite3OsOpenReadOnly ),
IF_DISKIO( sqlite3OsDelete ),
IF_DISKIO( sqlite3OsFileExists ),
IF_DISKIO( sqlite3OsFullPathname ),
IF_DISKIO( sqlite3OsIsDirWritable ),
IF_DISKIO( sqlite3OsSyncDirectory ),
IF_DISKIO( sqlite3OsTempFileName ),
sqlite3OsRandomSeed,
sqlite3OsSleep,
sqlite3OsCurrentTime,
sqlite3OsEnterMutex,
sqlite3OsLeaveMutex,
sqlite3OsInMutex,
sqlite3OsThreadSpecificData,
sqlite3OsMalloc,
sqlite3OsRealloc,
sqlite3OsFree,
sqlite3OsAllocationSize,
IF_DLOPEN( sqlite3OsDlopen ),
IF_DLOPEN( sqlite3OsDlsym ),
IF_DLOPEN( sqlite3OsDlclose ),
}
| const char* sqlite3_malloc_id = 0 |
| int sqlite3_memUsed |
| int sqlite3_memMax |
| int sqlite3_os_trace = 0 |
| int sqlite3_io_error_hit = 0 |
| int sqlite3_io_error_pending = 0 |
| int sqlite3_io_error_persist = 0 |
| int sqlite3_diskfull_pending = 0 |
| int sqlite3_diskfull = 0 |
| int sqlite3_open_file_count = 0 |
| int sqlite3_current_time = 0 |
| int sqlite3_tsd_count = 0 |
| int threadsOverrideEachOthersLocks = SQLITE_THREAD_OVERRIDE_LOCK |
| int sqlite3_sync_count = 0 |
| int sqlite3_fullsync_count = 0 |
| int sqlite3_os_type = 0 |
| int sqlite3_pager_readdb_count = 0 |
| int sqlite3_pager_writedb_count = 0 |
| int sqlite3_pager_writej_count = 0 |
| int sqlite3_pager_pgfree_count = 0 |
| int sqlite3_opentemp_count = 0 |
| int sqlite3_pager_n_sort_bucket = 0 |
| int sqlite3_btree_trace = 0 |
| int sqlite3_vdbe_addop_trace = 0 |
| int sqlite3_search_count = 0 |
| int sqlite3_interrupt_count = 0 |
| int sqlite3_sort_count = 0 |
Initial value:
{
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1,
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
}
| int sqlite3_like_count = 0 |
| int sqlite3_where_trace = 0 |
| char sqlite3_query_plan[BMS *2 *40] |
| YYCODETYPE lhs |
| const unsigned char ebcdicToAscii[] |
Initial value:
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0,
0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0,
0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0,
0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0,
0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}
1.5.6