This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/DBEngine.h

26 lines
427 B
C
Raw Normal View History

2015-09-15 02:57:33 -05:00
#include <fstream>
#include <iostream>
#include <vector>
#include "Relation.h"
2015-09-15 02:57:33 -05:00
using namespace std;
class DBEngine {
//member variables
//NOT DONE
//vector<Relation> tables;
2015-09-14 15:04:54 -05:00
public:
DBEngine();
void createCmd();
2015-09-14 15:23:06 -05:00
//void openCmd();
void saveCmd();
void showCmd();
2015-09-14 15:23:06 -05:00
void insertQuery();
void deleteQuery();
void selectQuery();
void projectQuery();
void productQuery();
bool unionComp();
2015-09-14 15:04:54 -05:00
};