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

https://github.com/vanutp/relational-db


https://github.com/vanutp/relational-db

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

Run tests with `cargo test --release`

Run cli with `cargo run --release`

You can change the data directory by setting the `STORAGE_DIR` environment variable

Example queries:

- `create table meow (id int, name string, height double, is_fox bool)`
- `insert into meow values (1, 'vanutp', 182.5, true)`
- `select * from meow where name = 'vanutp'`
- `select * from meow where height > 100.`
- `update meow set height = -1. where name = 'vanutp'`
- `delete from meow where is_fox = false`
- `drop table meow`