https://github.com/rapptz/sqlitexx
A C++14 SQLite3 wrapper
https://github.com/rapptz/sqlitexx
Last synced: 8 months ago
JSON representation
A C++14 SQLite3 wrapper
- Host: GitHub
- URL: https://github.com/rapptz/sqlitexx
- Owner: Rapptz
- License: mit
- Created: 2017-10-17T00:38:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T23:57:08.000Z (over 8 years ago)
- Last Synced: 2025-01-08T23:47:35.815Z (about 1 year ago)
- Language: C++
- Size: 15.6 KB
- Stars: 4
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## sqlitexx
A header-only C++14 wrapper for SQLite3.
The minimum SQLite3 version supported is currently `3.14.1`.
### Supported Compilers
Any C++14 capable compiler should be able to compile this.
Of note:
- GCC 5.1+
- Clang 3.4+
- MSVC 2017 15.3 or higher
I have only tested this on GCC 7.0.
### Installing
The library is entirely header-only, but if you want to generate a single file for even easier inclusion just
run the `single.py` script. e.g.
```
$ python single.py
Creating single header for project sqlitexx.
Current revision: b62b491
...
Successfully output file to ./sqlitexx.hpp
```
Afterwards you will get a single header file for convenience.
### License
MIT. See LICENSE.