https://github.com/claudemuller/sqleavy.c
A toy implementation of SQLite in C
https://github.com/claudemuller/sqleavy.c
c database sqllite
Last synced: 2 months ago
JSON representation
A toy implementation of SQLite in C
- Host: GitHub
- URL: https://github.com/claudemuller/sqleavy.c
- Owner: claudemuller
- Created: 2023-08-19T11:06:18.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-07T10:10:26.000Z (almost 3 years ago)
- Last Synced: 2025-02-14T18:33:45.603Z (over 1 year ago)
- Topics: c, database, sqllite
- Language: C
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SQLeavy
[](https://github.com/claudemuller/sqleavy.c/actions/workflows/c.yml)
A toy implementation of SQLite in C.
# Requirements
- [gcc](https://gcc.gnu.org/)
- or [clang](https://clang.llvm.org/)
- [make](https://www.gnu.org/software/make/)
# Build
```bash
make build
```
# Run
```bash
make run
```
# Run Tests
```bash
make test
```
# Build a Debug Binary
```bash
make debug-build
```
# Start `lldb` or `gdb` With Debug Binary
```bash
make debug
```