Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiendq/sqlitecppexample
C++ example project using SQLiteCpp as a Git submodule
https://github.com/tiendq/sqlitecppexample
cpp database sqlite
Last synced: 5 days ago
JSON representation
C++ example project using SQLiteCpp as a Git submodule
- Host: GitHub
- URL: https://github.com/tiendq/sqlitecppexample
- Owner: tiendq
- License: mit
- Created: 2018-11-01T14:21:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T01:55:00.000Z (over 5 years ago)
- Last Synced: 2024-03-15T14:55:12.767Z (8 months ago)
- Topics: cpp, database, sqlite
- Language: C++
- Homepage:
- Size: 570 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
SQLiteC++ Example
-----------------The C++ example project using [SQLiteCpp](https://github.com/tiendq/SQLiteCpp) as a Git submodule. More examples are available at `SQLiteCpp` repo.
## Getting Started
Clone this repository and then init and update submodule `SQLiteCpp`.
```shell
git clone --recurse-submodules https://github.com/tiendq/SQLiteCppExample.git
```Build with CMake.
```shell
mkdir build
cd build
cmake ..
cmake --build .
```## History
This repo is originally forked from [SQLiteCpp_Example](https://github.com/SRombauts/SQLiteCpp_Example).