An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# SQLeavy
[![build](https://github.com/claudemuller/sqleavy.c/actions/workflows/c.yml/badge.svg)](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
```