Skip to content

yuqian5/SQLitePlus

Repository files navigation

SQLitePlus build

A modern C++ header only SQLite3 wrapper

About

This header only library aims to provide an simple and intuitive interface for the SQLite3 C library. Many of the methods took inspirations from the Python SQLite3 library.

Install

  1. Download directory lib
  2. Include headers
    • CMake Project:
      • simply include the lib/include directory in your project
      • INCLUDE_DIRECTORIES(./lib/include)
        
    • Others:
      • include SQLITE3.hpp and SQLITE3_QUERY.hpp in your project

Dependency

Documentation

See Doxygen

Contributing

  1. Fork Repo
  2. Make Changes and add new tests if needed
  3. Submit pull request with detail description on changes and new features
  4. Wait for approval
  • Please keep in mind that this project aims to create a simple and intuitive interface for the SQLite3 C library, so please refrain from adding anything to the dependency tree.

Feature Request

Submit a feature request under the issues tab.

Demo

    cmake CMakeLists.txt
    make
    ./SQLitePlusDemo

Tutorial