sqlixx is a C++ module library that wraps the SQLite database library.
Implements: sqlixx::connection, sqlixx::statement
Status: Experimental
sqlixx is released under the MIT License
auto conn = sqlixx::open_connection("file:data.db?mode=ro&cache=private", sqlixx::open::uri);
auto stmt = sqlixx::prepare_statement(conn, "SELECT u.id, u.name FROM users AS u WHERE u.status = 'active';");