doyoubi / Blastoise

tiny relational database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blastoise

Run server:

cargo run

Run client:

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

About

tiny relational database


Languages

Language:Rust 98.7%Language:Python 1.3%