{"id":62012,"library":"sqlite-flux","title":"sqlite-flux","description":"Modern C++20 type-safe, thread-safe SQLite query builder with fluent API and compile-time validation","status":"active","version":"1.1.1","language":"cpp","source_language":null,"source_url":null,"tags":["sqlite","database","query-builder","c++20"],"install":[{"cmd":"vcpkg install sqlite-flux","lang":"bash","label":"vcpkg"},{"cmd":"# CMakeLists.txt\nfind_package(sqlite_flux CONFIG REQUIRED)\ntarget_link_libraries(main PRIVATE sqlite-flux::sqlite-flux)","lang":"cmake","label":"CMake"}],"dependencies":[],"imports":[{"symbol":"sqlite_flux/sqlite_flux.hpp","correct":"#include <sqlite_flux/sqlite_flux.hpp>"}],"quickstart":{"code":"#include <sqlite_flux/sqlite_flux.hpp>\n#include <iostream>\n\nint main() {\n    auto db = sqlite_flux::database(\":memory:\");\n    db.execute(\"CREATE TABLE test (id INTEGER PRIMARY KEY, name TEXT)\");\n    db.execute(\"INSERT INTO test VALUES (1, 'hello')\");\n    auto result = db.query(\"SELECT name FROM test WHERE id = ?\", 1);\n    for (auto& row : result) {\n        std::cout << row.get<std::string>(0) << std::endl;\n    }\n    return 0;\n}","lang":"cpp","description":"Create an in-memory SQLite database, insert a row, and query it"},"warnings":[{"fix":"Set CMAKE_CXX_STANDARD to 20 or higher","message":"Requires C++20; not compatible with older standards","severity":"breaking","affected_versions":"all"}],"env_vars":null,"search_vec":"'+20':6,30 'api':18 'builder':15,28 'c':5,29 'compil':21 'compile-tim':20 'databas':25 'fluent':17 'flux':3 'modern':4 'queri':14,27 'query-build':26 'safe':9,12 'sqlite':2,13,24 'sqlite-flux':1 'thread':11 'thread-saf':10 'time':22 'type':8 'type-saf':7 'valid':23","created_at":"2026-06-17T05:13:45.997655+00:00","updated_at":"2026-06-17T05:13:45.997655+00:00","problems":[],"ecosystem":"vcpkg","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":null,"github":null,"docs":null,"changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["database"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-17","next_check":"2026-12-14","install_tag":null}}