#include <iostream>
#include "db_engine.h"
using namespace std;
int main() {
db_engine engine;
vector<string> attributes;
vector<string> pkeys;
//we need a better way to do this
//going for function right now
attributes.push_back("username VARCHAR(20)");
attributes.push_back("password VARCHAR(20)");
pkeys.push_back("password");
engine.createCmd("users", attributes, pkeys);
vector<string> tuple;
tuple.push_back("csce315");
tuple.push_back("12345");
engine.insertQuery("users", tuple);
engine.saveCmd();
}