Skip to content

jlmjanssen/sqlixx

Repository files navigation

sqlixx: sqlite on C++ steroids

Library status CI Test codecov

sqlixx is a C++ module library that wraps the SQLite database library.

Implements: sqlixx::connection, sqlixx::statement

Status: Experimental


License

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';");

About

SQLite on C++ steroids

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors