It is delphi and object pascal bindings and wrapper around SQLite library. SQLite is library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine.
Library is tested for
Get the sources and add the source directory to the project search path. For FPC add the source directory to the fpc.cfg file.
Clone the repository git clone https://github.com/isemenkov/libpassqlite.
Add the unit you want to use to the uses clause.
A testing framework consists of the following ingredients:
unit-tests directory.libpassqlite.pas file contains the SQLite translated headers to use this library in pascal programs. You can find C API documentation at SQLite website.
More details read on wiki page.
sqlite3.database.pas file contains the SQLite object wrapper.
More details read on wiki page.
sqlite3.builder.pas file contains the SQLite query builder.
More details read on wiki page.