Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 502 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 502 Bytes

database-simulator

The purpose of this project is to simulate a database containing tables which hold various information. The user can create a new table, delete an existing table, add rows to a specific table, print a table, search for a certain row, or list rows which meet a given criteria. There are three types of tables, depending on the type of the information it holds (STRING, INT, FLOAT). The implementation of the tables was made using Linked Lists (in C). The input is read from stdin.