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

17 lines
278 B
C
Raw Normal View History

2015-09-14 15:04:54 -05:00
class db_engine {
//member variables
public:
db_engine();
2015-09-14 15:23:06 -05:00
void createCmd();
//void openCmd();
void saveCmd();
void showCmd();
void insertQuery();
void deleteQuery();
void selectQuery();
void projectQuery();
void productQuery();
bool unionComp();
2015-09-14 15:04:54 -05:00
};