Small. Fast. Reliable.
Choose any three.
Search for:

SQLite Release 3.4.0 On 2007-06-18

  1. Fix a bug that can lead to database corruption if an SQLITE_BUSY error occurs in the middle of an explicit transaction and that transaction is later committed. Ticket #2409. See the CorruptionFollowingBusyError wiki page for details.
  2. Fix a bug that can lead to database corruption if autovacuum mode is on and a malloc() failure follows a CREATE TABLE or CREATE INDEX statement which itself follows a cache overflow inside a transaction. See ticket #2418.
  3. Added explicit upper bounds on the sizes and quantities of things SQLite can process. This change might cause compatibility problems for applications that use SQLite in the extreme, which is why the current release is 3.4.0 instead of 3.3.18.
  4. Added support for Incremental BLOB I/O.
  5. Added the sqlite3_bind_zeroblob() API and the zeroblob() SQL function.
  6. Added support for Incremental Vacuum.
  7. Added the SQLITE_MIXED_ENDIAN_64BIT_FLOAT compile-time option to support ARM7 processors with goofy endianness.
  8. Removed all instances of sprintf() and strcpy() from the core library.
  9. Added support for International Components for Unicode (ICU) to the full-text search extensions.