A partial clone of SQLite written in C.
It supports addition of entries in the form of (user id, username, email).
Data is flushed to the disk on exiting from the db.
- Clone the repository and build the application
cd sqlite/src/
make
- Run the application by passing in a " .db " file as the argument. If the file isn't present, it will be created once the user exits the db
./db new.db
Built while following this tutorial.