Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doyoubi/Blastoise
tiny relational database
https://github.com/doyoubi/Blastoise
Last synced: 3 months ago
JSON representation
tiny relational database
- Host: GitHub
- URL: https://github.com/doyoubi/Blastoise
- Owner: doyoubi
- Created: 2015-11-20T06:55:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-01-30T03:35:16.000Z (almost 3 years ago)
- Last Synced: 2024-07-15T12:51:39.497Z (4 months ago)
- Language: Rust
- Size: 205 KB
- Stars: 44
- Watchers: 9
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```