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);
|
||||
|
||||
engine.save();
|
||||
/*
|
||||
|
||||
|
||||
//engine.createTable("Food", v);
|
||||
//engine.createTable("Food", v);
|
||||
|
@ -117,7 +117,9 @@ int main () {
|
|||
v2.push_back(att6);
|
||||
|
||||
engine.createTable("MoarFood", v2);
|
||||
|
||||
//engine.getTableFromName("Food").display();
|
||||
|
||||
engine.setUnion(engine.getTableFromName("Food"), engine.getTableFromName("MoarFood")).display();
|
||||
*/
|
||||
// engine.setUnion(engine.getTableFromName("Food"), engine.getTableFromName("MoarFood")).display();
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue