https://github.com/dmarsh19/sqlite_ncurses
Use values in a SQLite database to populate ncurses menu choices.
https://github.com/dmarsh19/sqlite_ncurses
ncurses sqlite
Last synced: about 2 months ago
JSON representation
Use values in a SQLite database to populate ncurses menu choices.
- Host: GitHub
- URL: https://github.com/dmarsh19/sqlite_ncurses
- Owner: dmarsh19
- License: bsd-3-clause
- Created: 2018-06-12T19:30:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T21:02:29.000Z (over 7 years ago)
- Last Synced: 2025-03-29T06:43:33.156Z (about 1 year ago)
- Topics: ncurses, sqlite
- Language: C++
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Requirements:
- libsqlite3-dev
- libncurses5-dev
### Get Started:
1. Create a sqlite database in the project root directory (same location as this README)
```
./tests/test_create_db.py
```
2. Build project from source
```
make
```
3. Run executable, usage is documented if run with no params
```
./menu_from_sqlite menu.sqlite Menu "Key,Description"
```
>Press Enter to select an item and exit or Esc to exit without selecting.