mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Give access to the sqlite3 prepared statement API.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user