squirrel/README.md

32 lines
803 B
Markdown
Raw Normal View History

2023-08-03 04:14:46 +00:00
# SQUIRREL
SQL Query Util-Izing Rust's Reliable and Efficient Logic
2023-08-08 21:25:22 +00:00
![Demo showing data insertation into SQUIRREL](https://github.com/nickorlow/squirrel/blob/main/.meta/images/demo_data_insert.png?raw=true)
2023-08-03 04:14:46 +00:00
## 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
2023-08-08 19:55:46 +00:00
[X] CREATE TABLE with varchar & integer datatypes
2023-08-03 04:14:46 +00:00
2023-08-08 19:55:46 +00:00
[X] INSERT INTO (non-batched)
[X] SELECT * query
[ ] DELETE command
2023-08-03 04:14:46 +00:00
[ ] SELECT (filtered columns) query
2023-08-08 19:55:46 +00:00
[ ] WHERE clause for SELECT and DELETE
2023-08-03 04:14:46 +00:00
[ ] Primary Keys via B+ Tree
[ ] Foreign Keys
[ ] Some form of JOINs
[ ] Support [Postgres' messaging system](https://www.postgresql.org/docs/current/protocol-flow.html#id-1.10.6.7.3) (wire compatability)
2023-08-08 19:55:46 +00:00
... other stuff is TBD