Download SQLite 3.3.10

Spread the love

SQLite is a compact database system developed in C and can be used as a database for websites and embedded applications, among other things. According to D. Richard Hipp, the developer of SQLite, the database system requires no installation and administration, supports databases up to two terabytes in size, and stores an entire database in a single file. It supports almost the full SQL92 specification and is easy to control via, among others Tcl/Tk. The developer recently released version 3.3.10 with the following list of changes:

Version 3.3.10:

  • Fix bugs in the implementation of the new sqlite3_prepare_v2() API that can lead to segfaults.
  • Fix 1-second round-off errors in the strftime() function
  • Enhance the windows OS layer to provide detailed error codes
  • Work around a win2k problem so that SQLite can use single-character database file names
  • The user_version and schema_version pragmas correctly set their column names in the result set
  • Documentation updates

Version 3.3.9:

  • Fix bugs in pager.c that could lead to database corruption if two processes both try to recover a hot journal at the same instant
  • Added the sqlite3_prepare_v2() API.
  • Fixed the “.dump” command in the command-line shell to show indices, triggers and views again.
  • Change the table_info pragma so that it returns NULL for the default value if there is no default value
  • Support for non-ASCII characters in win95 filenames
  • Query optimizer enhancements:
    • Optimizer does a better job of using indices to satisfy ORDER BY clauses that sort on the integer primary key
    • Use an index to satisfy an IS NULL operator in the WHERE clause
    • Fix a bug that was causing the optimizer to miss an OR optimization opportunity
    • The optimizer has more freedom to reorder tables in the FROM clause even in there are LEFT joins.
  • Extension loading supported added to winCE
  • Allow constraint names on the DEFAULT clause in a table definition
  • Added the “.bail” command to the command-line shell
  • Make CSV (comma separate value) output from the command-line shell more closely aligned to accepted practice
  • Experimental FTS2 module added
  • Use sqlite3_mprintf() instead of strdup() to avoid libc dependencies
  • VACUUM uses a temporary file in the official TEMP folder, not in the same directory as the original database
  • The prefix on temporary filenames on windows has been changed from “sqlite” to “etilqs”.

Version number 3.3.10
Operating systems Windows 9x, Windows NT, Windows 2000, Linux, BSD, Windows XP, DOS, macOS, Solaris, UNIX, Windows Server 2003, Windows Vista
Website SQLite
Download
License type Prerequisites (GNU/BSD/etc.)
You might also like