A database management system is a software for creating and managing databases. The DBMS provides users and programmers with a systematic way to create, retrieve, update and manage data.
In this project we have implemented a simulation of a DBMS in C++ by defining our own commands with a command-line type interface. We have defined the following commands:
- help
-Gives details on the other commands - create
-Used to create databases/tables - insert
-Used to add columns to the table - delete
-Used to delete tables, records and columns - show
-Used to show details of databases, tables - use
-Used to switch to a different database