Compare commits

...

4 Commits

Author SHA1 Message Date
Steve Dower
483b7288d1 Import SQLite 3.34.0 sources 2021-01-05 21:06:08 +00:00
Steve Dower
b04e151c18 Import SQLite 3.33.0 sources 2020-10-08 00:14:26 +01:00
Erlend Egeberg Aasland
7a9881195e Add SQLite 3.32.3 for CPython (#21) 2020-07-20 23:24:00 +01:00
Erlend Egeberg Aasland
ba0c59b6df Add SQLite 3.32.2 for CPython (#20) 2020-06-08 16:59:47 +01:00
4 changed files with 14935 additions and 10888 deletions

2292
shell.c

File diff suppressed because it is too large Load Diff

22076
sqlite3.c

File diff suppressed because it is too large Load Diff

1451
sqlite3.h

File diff suppressed because it is too large Load Diff

View File

@@ -335,6 +335,8 @@ struct sqlite3_api_routines {
int,const char**);
void (*free_filename)(char*);
sqlite3_file *(*database_file_object)(const char*);
/* Version 3.34.0 and later */
int (*txn_state)(sqlite3*,const char*);
};
/*
@@ -639,6 +641,8 @@ typedef int (*sqlite3_loadext_entry)(
#define sqlite3_create_filename sqlite3_api->create_filename
#define sqlite3_free_filename sqlite3_api->free_filename
#define sqlite3_database_file_object sqlite3_api->database_file_object
/* Version 3.34.0 and later */
#define sqlite3_txn_state sqlite3_api->txn_state
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)