#include #include "db_engine.h" using namespace std; int main() { db_engine engine; vector attributes; vector 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 tuple; tuple.push_back("csce315"); tuple.push_back("12345"); engine.insertQuery("users", tuple); engine.saveCmd(); }