SQLit is a minimal implementation of SQL. It contains a very tiny subset of the Structured Query Language.
There are many unfinished parts, but this project isn't meant to be public-ready; it was just
a fun exercise. SQLit is case insensitive, which means SELECT is the same as
select.
There are only 3 attribute data types in SQLit:
Strings are a sequence of characters within single quotes ''.
The only arithmetic operations supported in queries are + (plus) and
- (minus).
The list of WHERE operators supported are:
< (less than)> (greater than)= (equal to)!= (not equal to)AND (logical AND)OR (logical OR)Creating a table
Inserting records
Querying tables
SQLit allows requesting for all columns using *, as well as specific columns by
comma-separating them.
Updating records
Deleting records
A test database has been created and populated with a people table.
Try out the language below: