From 7fe87111fc2f9ae30cac72f5dde463b9fec78089 Mon Sep 17 00:00:00 2001 From: Becca Date: Mon, 14 Sep 2015 18:39:04 -0500 Subject: [PATCH] assignments for the night --- db_engine.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) 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