#include #include #include using namespace std; class db_engine { vector cmdList; //vector> table; public: db_engine(); void createCmd(string tableName, vector attributes, vector pkeys); //void openCmd(); void saveCmd(); void showCmd(string tableName); void insertQuery(string tableName, vector t); void deleteQuery(); void selectQuery(); void projectQuery(); void productQuery(); bool unionComp(); };