From e643a0ddceac08e77a76bba763ec2987df82c7de Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Fri, 18 Aug 2023 02:00:42 -0500 Subject: [PATCH] update projects --- src/projects.filler.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/projects.filler.html b/src/projects.filler.html index 9afa01a..8f443b4 100644 --- a/src/projects.filler.html +++ b/src/projects.filler.html @@ -42,9 +42,10 @@ [ GitHub Repo ]

SQUIRREL stands for SQL Query Util-Izing Rust's Reliable and Efficient Logic. It is a SQL database - that I am writing in Rust. Currently, it can parse CREATE TABLE commands, and works with the - data types varchar and int. I plan to implement basic CRUD operations, then add JOINs, and then - try to make it wire-compatible with Postgres. + that I am writing in Rust. Currently, it can create tables, insert data into tables, and select all + data from a given table. The biggest challenge so far has been writing the parser. My next steps are + to add WHERE clauses to SELECT statements, allow column filtering in SELECT statements, and add DELETE + statements.