Currently, SQLite is one of the most used SQL flat-file database engines in the world.
SQLite is recommended for usage as a website database, stand-in enterprise RDBMS, application file format or a database for gadgets.
This page links to the source code of SQLite. For OS-specific binaries please see the Softpedia Global Page.
Here are some key features of "SQLite":
· Cross-platform
· Simple, easy to use API
· TCL bindings included
· Documentation
· Self-contained
· Standalone command-line interface (CLI) client
· Atomic, consistent, isolated, and durable (ACID) transactions
· Zero-configuration
· Implements most of SQL92
· A database is stored in a single file
· Database files can be freely shared between machines
· Supports databases up to 2 tebibytes (241 bytes) in size
· Strings and BLOBs up to 2 gibibytes (231 bytes) in size
· Small code footprint
· Faster than popular client/server database engines
· 98% test coverage.
· Available as a single ANSI-C source-code file
What's New in This Release: [ read full changelog ]
· Fixed a bug (present since version 3.7.13) that could result in database corruption on Windows.