DISQLite3 implements a self-contained, embeddable, zero-configuration SQL database engine.
Here are some key features of "DISQLite3":
· ACID transactions, even after system crashes and power failures.
· Zero-configuration – no setup or administration needed.
· Implements most of SQL-92.
· A complete database is stored in a single disk file.
· Supports terabyte-sized databases and gigabyte-sized strings and blobs. Self-contained: no external dependencies, no DLLs.
· Small footprint: less than 300 KB code space only.
· Full Text Search with customizable tokenizer and prefix matching.
· Database AES encryption with SHA256 key generator.
· Db.pas is not required, which allows DISQLite3 to compile with all flavours of Delphi, including Delphi Standard and Delphi Personal.
· Faster than popular database engines for most common operations.
· Simple, easy to use API.
· Database files created with DISQLite3 can also be accessed by Linux and MacOS using the SQLite3 libraries.
DISQLite3 will provide a comprehensive list of functions and procedures to manage database records with ease and efficiency. It includes the full SQLite3 functionality, plus a number of Delphi specific extras:
· AnsiString, WideString, and Variant support.
· Database and Statement wrapper classes.
· TDataSet support.
· TStream support for BLOBs.
· Growing number of Delphi example projects.
DISQLite3 Pro is required for commercial use and may be purchased online. It adds functionality usually desired by advanced users. This includes SQL triggers and views, arbitrary encryption passwords, user-defined SQL functions, and more. Since DISQLite3 Pro is fully compatible to the Personal edition, it is possible to upgrade existing projects without any code changes.
Requirements:
· Compilers D4, D5, D6, C6, D7, D2005 Win32, D2006 Win32, D2007 Win32
What's New in This Release: [ read full changelog ]
· Delphi 2010 support.
· Fix a threading issue with TDISQLite3Database by wrapping all calls to its FStatements field with mutexes.
· Fix sqlite3_key() so that it successfully sets a correct password after an incorrect one.