| const char | sqlite3_version |
| IMPORT_C const char * | sqlite3_libversion | ( | void | ) |
| IMPORT_C const char * | sqlite3_sourceid | ( | void | ) |
| IMPORT_C int | sqlite3_libversion_number | ( | void | ) |
| IMPORT_C int | sqlite3_compileoption_used | ( | const char * | zOptName | ) |
| IMPORT_C const char * | sqlite3_compileoption_get | ( | int | N | ) |
| IMPORT_C int | sqlite3_threadsafe | ( | void | ) |
| typedef struct sqlite3 | sqlite3 |
| typedef long long int | sqlite_int64 |
| typedef unsigned long long int | sqlite_uint64 |
| typedef sqlite_int64 | sqlite3_int64 |
| typedef sqlite_uint64 | sqlite3_uint64 |
| IMPORT_C int | sqlite3_close | ( | sqlite3 * | ) |
| typedef int(* | sqlite3_callback |
| IMPORT_C int | sqlite3_exec | ( | sqlite3 * | , |
| const char * | sql, | |||
| int(*)(void *, int, char **, char **) | callback, | |||
| void * | , | |||
| char ** | errmsg | |||
| ) | ||||
| typedef struct sqlite3_file | sqlite3_file |
| typedef struct sqlite3_io_methods | sqlite3_io_methods |
| typedef struct sqlite3_mutex | sqlite3_mutex |
Initializes sqlite3_mutex data members with their default values.
| typedef struct sqlite3_vfs | sqlite3_vfs |
| typedef void(* | sqlite3_syscall_ptr |
| IMPORT_C int | sqlite3_initialize | ( | void | ) |
| IMPORT_C int | sqlite3_shutdown | ( | void | ) |
| IMPORT_C int | sqlite3_os_init | ( | void | ) |
Initializes the OS porting layer global data.
| IMPORT_C int | sqlite3_os_end | ( | void | ) |
Destroys the OS porting layer global data.
| IMPORT_C int | sqlite3_config | ( | int | , |
| ... | ||||
| ) | ||||
| IMPORT_C int | sqlite3_db_config | ( | sqlite3 * | , |
| int | op, | |||
| ... | ||||
| ) | ||||
| typedef struct sqlite3_mem_methods | sqlite3_mem_methods |
| IMPORT_C int | sqlite3_extended_result_codes | ( | sqlite3 * | , |
| int | onoff | |||
| ) | ||||
| IMPORT_C sqlite3_int64 | sqlite3_last_insert_rowid | ( | sqlite3 * | ) |
| IMPORT_C int | sqlite3_changes | ( | sqlite3 * | ) |
| IMPORT_C int | sqlite3_total_changes | ( | sqlite3 * | ) |
| IMPORT_C void | sqlite3_interrupt | ( | sqlite3 * | ) |
| IMPORT_C int | sqlite3_complete | ( | const char * | sql | ) |
| IMPORT_C int | sqlite3_complete16 | ( | const void * | sql | ) |
| IMPORT_C int | sqlite3_busy_handler | ( | sqlite3 * | , |
| int(*)(void *, int) | , | |||
| void * | ||||
| ) | ||||
| IMPORT_C int | sqlite3_busy_timeout | ( | sqlite3 * | , |
| int | ms | |||
| ) | ||||
| IMPORT_C int | sqlite3_get_table | ( | sqlite3 * | db, |
| const char * | zSql, | |||
| char *** | pazResult, | |||
| int * | pnRow, | |||
| int * | pnColumn, | |||
| char ** | pzErrmsg | |||
| ) | ||||
| IMPORT_C void | sqlite3_free_table | ( | char ** | result | ) |
| IMPORT_C char * | sqlite3_mprintf | ( | const char * | , |
| ... | ||||
| ) | ||||
| IMPORT_C char * | sqlite3_vmprintf | ( | const char * | , |
| va_list | ||||
| ) | ||||
| IMPORT_C char * | sqlite3_snprintf | ( | int | , |
| char * | , | |||
| const char * | , | |||
| ... | ||||
| ) | ||||
| IMPORT_C char * | sqlite3_vsnprintf | ( | int | , |
| char * | , | |||
| const char * | , | |||
| va_list | ||||
| ) | ||||
| IMPORT_C void * | sqlite3_malloc | ( | int | ) |
| IMPORT_C void * | sqlite3_realloc | ( | void * | , |
| int | ||||
| ) | ||||
| IMPORT_C void | sqlite3_free | ( | void * | ) |
| IMPORT_C sqlite3_int64 | sqlite3_memory_used | ( | void | ) |
| IMPORT_C sqlite3_int64 | sqlite3_memory_highwater | ( | int | resetFlag | ) |
| IMPORT_C void | sqlite3_randomness | ( | int | N, |
| void * | P | |||
| ) | ||||
| IMPORT_C int | sqlite3_set_authorizer | ( | sqlite3 * | , |
| int(*)(void *, int, const char *, const char *, const char *, const char *) | xAuth, | |||
| void * | pUserData | |||
| ) | ||||