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/db_engine.h
2015-09-15 10:21:16 -05:00

23 lines
516 B
C++
Executable file

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