https://github.com/vanutp/relational-db
https://github.com/vanutp/relational-db
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vanutp/relational-db
- Owner: vanutp
- Created: 2025-05-28T21:57:09.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-05-29T03:08:08.000Z (about 1 year ago)
- Last Synced: 2025-06-05T20:08:58.235Z (about 1 year ago)
- Language: Rust
- Size: 19.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`