ksql icon indicating copy to clipboard operation
ksql copied to clipboard

yet another SQLite wrapper

Synopsis

ksql is a simple wrapper around the SQLite C-language interface. It makes sure your database cleans up properly in the case of application failure by using the atexit(3) facility.

It also has the facility to open the database in a protected child, communicating with the caller via pipes. This allows for stronger sandboxing of the calling process.

Installation

Download the latest version's source archive or download the project from GitHub. Then run the configuration script with ./configure. (See the configure script for details.) Finally, compile with make, then sudo make install (or doas make install, whatever the case may be).

API Reference

See the ksql(3) manpage for complete library documentation.

License

All sources use the ISC (like OpenBSD) license. See the LICENSE.md file for details.