Releases: rogerbinns/apsw
3.8.10.1-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Added deterministic parameter to Connection.createscalarfunction() (APSW issue 187)
Switched to new SQLite API returning 64 bit values for status() (APSW issue 191)
3.8.9-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Fixed column description caching which could be preserved between multiple statements in the same execution (APSW issue 186)
Updated documentation building tool to use new database of information from the SQLite site. This is simpler and more reliable. (Previously used site scraping.)
Added SQLITE_AUTH_USER, SQLITE_FCNTL_LAST_ERRNO, SQLITE_FCNTL_WAL_BLOCK, SQLITE_FCNTL_GET_LOCKPROXYFILE, and SQLITE_FCNTL_SET_LOCKPROXYFILE constants.
Removed SQLITE_GET_LOCKPROXYFILE, SQLITE_SET_LOCKPROXYFILE, SQLITE_LAST_ERRNO file control constants. These are deprecated - use the versions with FCNTL in their name (eg SQLITE_FCNTL_GET_LOCKPROXYFILE).
Added mappings for conflict resolution modes, virtual table configuration options and xShmLock VFS flags.
3.8.8.2-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
No APSW changes.
3.8.8.1-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
The column description is now cached on first request during a query so getting it is quick if called for every row.
Added SQLITE_CONFIG_PCACHE_HDRSZ and SQLITE_CONFIG_PMASZ constants, and support for them in config().
Added SQLITE_CHECKPOINT_TRUNCATE constant.
Update year in various places to 2015.
3.8.7.3-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
No APSW changes
3.8.7.2-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Fixed parsing of icu-config flags
3.8.7.1-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Added SQLITE_LIMIT_WORKER_THREADS constant
3.8.6-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Updated test suite for Python 3.4 unittest garbage collection changes (APSW issue 164, APSW issue 169)
Using the recommended build option of –enable-all-extensions turns on STAT4. Windows binaries include this too.
3.8.5-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Added SQLITE_IOCAP_IMMUTABLE and SQLITE_FCNTL_WIN32_SET_HANDLE
constants.
3.8.4.3-r1
Source ▪ Downloads ▪ Changelogs ▪ Documentation
Added Cursor.fetchone()