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-14 17:03:23 -05:00

20 lines
353 B
C++
Executable file

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