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/test.cpp

20 lines
334 B
C++
Raw Normal View History

2015-09-15 20:16:58 -05:00
#include <iostream>
#include <vector>
2015-09-28 19:11:26 -05:00
#include "Parser.h"
2015-09-28 15:57:57 -05:00
//#include "Condition.h"
2015-09-15 21:31:19 -05:00
#include "DBEngine.h"
2015-09-15 20:16:58 -05:00
using namespace std;
2015-09-14 15:04:54 -05:00
2015-09-25 00:29:00 -05:00
int main () {
DBEngine engine;
2015-09-28 17:02:04 -05:00
string x;
cout << "Enter DBMS Commands: ";
while(getline(cin, x))
{
//cout << x << endl;
parse(x, engine);
cout << "Enter DBMS Commands: ";
}
2015-09-25 00:29:00 -05:00
}