diff --git a/db_engine.cpp b/db_engine.cpp index 02d0a90..ff96c0c 100755 --- a/db_engine.cpp +++ b/db_engine.cpp @@ -8,6 +8,7 @@ db_engine::db_engine(){ //create a new table in memory //creates a vector +//DONE void db_engine::createCmd(string tableName, vector attributes, vector pkeys){ string output = ""; output += "CREATE TABLE " + tableName + " ("; @@ -52,6 +53,7 @@ void db_engine::createCmd(string tableName, vector attributes, vector