Give access to the sqlite3 prepared statement API.

This commit is contained in:
JoelKatz
2013-01-27 23:41:15 -08:00
parent e8ac00e1a3
commit d522f04385
3 changed files with 151 additions and 1 deletions

View File

@@ -16,6 +16,9 @@
/*
this maintains the connection to the database
*/
class SqliteDatabase;
class Database
{
protected:
@@ -83,7 +86,8 @@ public:
// float getSingleDBValueFloat(const char* sql);
// char* getSingleDBValueStr(const char* sql, std::string& retStr);
virtual bool setupCheckpointing() { return false; }
virtual bool setupCheckpointing() { return false; }
virtual SqliteDatabase* getSqliteDB() { return NULL; }
};
#endif