Table of Contents
[TOCM]
[TOC]
TinyDBMS with following features
Search by ID in O(1) Search by Title in O(lgn) Add Record Feature Update Existing Record Feature Delete Exisiting Record Feature Interactive UI
TinyDBMS is completely written in C++ Language. It can efficiently search for a Record stored in file and it have Record adding, updating and deletion feature.
TinyDBMS requires G++, GDB and make to run.
Install all dependencies before installation
- open terminal
- run the following commands on terminal
sudo apt update -y
sudo apt upgrade -y
sudo apt install make -y
sudo apt install gdb -y
sudo apt install g++ -y
- extract the zip
- open the terminal in the extracted folder
- run the following command on terminal
make
Enter following commands on terminal
make run
./bin/main
- To remove the previous build
make clean