squirrel/README.md

803 B

SQUIRREL

SQL Query Util-Izing Rust's Reliable and Efficient Logic

Demo showing data insertation into SQUIRREL

About

This is a SQL database written in Rust. It will be based off of (and hopefully be made wire-compatible with) PostgreSQL's syntax.

Feature roadmap

[X] CREATE TABLE with varchar & integer datatypes

[X] INSERT INTO (non-batched)

[X] SELECT * query

[x] SELECT (filtered columns) query

[x] DELETE command

[ ] WHERE clause for SELECT and DELETE

[ ] Primary Keys via B+ Tree

[ ] Foreign Keys

[ ] Some form of JOINs

[ ] Support Postgres' messaging system (wire compatability)

... other stuff is TBD