19 lines
334 B
C++
Executable file
19 lines
334 B
C++
Executable file
#include <iostream>
|
|
#include <vector>
|
|
#include "Parser.h"
|
|
//#include "Condition.h"
|
|
#include "DBEngine.h"
|
|
|
|
using namespace std;
|
|
|
|
int main () {
|
|
DBEngine engine;
|
|
string x;
|
|
cout << "Enter DBMS Commands: ";
|
|
while(getline(cin, x))
|
|
{
|
|
//cout << x << endl;
|
|
parse(x, engine);
|
|
cout << "Enter DBMS Commands: ";
|
|
}
|
|
}
|