Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/doyoubi/Blastoise

tiny relational database
https://github.com/doyoubi/Blastoise

Last synced: 3 months ago
JSON representation

tiny relational database

Awesome Lists containing this project

README

        

# Blastoise

Run server:
```bash
cargo run
```

Run client:
```bash
cargo run -- -c

> create table msg(id int not null primary, content char(233));
> insert msg values(1, "hello world");
> insert msg values(2, "hello doyoubi");
> insert msg values(3, "hello Blastoise");
> select * from msg where id % 2 = 1;

Ctrl-C to exit
```