more db stuff for the game init

gh-pages
Brian Jack 2014-12-14 16:40:43 -08:00
parent f98a6522b8
commit eda7b5a868
1 changed files with 10 additions and 1 deletions

View File

@ -23,6 +23,15 @@
namespace bvgame {
struct SQLType {
typedef enum {
integer=SQLITE_INTEGER,
real=SQLITE_FLOAT,
text=SQLITE_TEXT,
blob=SQLITE_BLOB
} _type;
};
typedef std::vector<string> rsvdList;
const char* queryHasModule=
@ -112,7 +121,7 @@ namespace bvgame {
db.loop_run(stmtAddRsvd);
}
}
}
}
namespace core {