This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/test.cpp
2015-09-14 18:31:05 -05:00

15 lines
No EOL
335 B
C++
Executable file

#include <iostream>
#include "db_engine.h"
using namespace std;
int main() {
db_engine engine;
vector<string> attributes;
vector<string> pkeys;
attributes.push_back("username VARCHAR(20)");
attributes.push_back("password VARCHAR(20)");
pkeys.push_back("password");
engine.createCmd("users", attributes, pkeys);
}