Esempio n. 1
0
int main () {
	system("a.bat");
	string input;
	Interpreter cmd;
	SqlCommand sql;
	int type;
	while (true) {
		//getline(cin, input);
		//if (cin == "Exit")
			//break;
		input = cmd.readInput();
		sql = cmd.getExpression(input);
		type = sql.gettype();
		api(type, sql);
	}

BufferManager bb("testa");
Block b;
b = bb.newBlock("t");

	return 0;
}