Starting DBApp development.
This commit is contained in:
parent
3436a00452
commit
50bff50cef
3 changed files with 17 additions and 3 deletions
12
DBApp.cpp
Executable file
12
DBApp.cpp
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#include <string> // std::string
|
||||||
|
#include <iostream> // std::cout
|
||||||
|
#include <sstream> // std::stringstream
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
//#include "Parserv3.h"
|
||||||
|
//#include "DBEngine.h"
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
cout << "Testing.";
|
||||||
|
}
|
BIN
test
BIN
test
Binary file not shown.
8
test.cpp
8
test.cpp
|
@ -92,7 +92,7 @@ int main () {
|
||||||
parse(ss3, engine);
|
parse(ss3, engine);
|
||||||
|
|
||||||
engine.save();
|
engine.save();
|
||||||
/*
|
|
||||||
|
|
||||||
//engine.createTable("Food", v);
|
//engine.createTable("Food", v);
|
||||||
//engine.createTable("Food", v);
|
//engine.createTable("Food", v);
|
||||||
|
@ -118,6 +118,8 @@ int main () {
|
||||||
|
|
||||||
engine.createTable("MoarFood", v2);
|
engine.createTable("MoarFood", v2);
|
||||||
|
|
||||||
engine.setUnion(engine.getTableFromName("Food"), engine.getTableFromName("MoarFood")).display();
|
//engine.getTableFromName("Food").display();
|
||||||
*/
|
|
||||||
|
// engine.setUnion(engine.getTableFromName("Food"), engine.getTableFromName("MoarFood")).display();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue