mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
29 lines
817 B
C
29 lines
817 B
C
|
#ifndef ENGINE_SQLITE_H
|
||
|
#define ENGINE_SQLITE_H
|
||
|
#include <memory>
|
||
|
|
||
|
typedef struct sqlite3 sqlite3;
|
||
|
typedef struct sqlite3_stmt sqlite3_stmt;
|
||
|
class IConsole;
|
||
|
class IStorage;
|
||
|
|
||
|
class CSqliteDeleter
|
||
|
{
|
||
|
public:
|
||
|
void operator()(sqlite3 *pSqlite);
|
||
|
};
|
||
|
class CSqliteStmtDeleter
|
||
|
{
|
||
|
public:
|
||
|
void operator()(sqlite3_stmt *pStmt);
|
||
|
};
|
||
|
typedef std::unique_ptr<sqlite3, CSqliteDeleter> CSqlite;
|
||
|
typedef std::unique_ptr<sqlite3_stmt, CSqliteStmtDeleter> CSqliteStmt;
|
||
|
|
||
|
int SqliteHandleError(IConsole *pConsole, int Error, sqlite3 *pSqlite, const char *pContext);
|
||
|
#define SQLITE_HANDLE_ERROR(x) SqliteHandleError(pConsole, x, &*pSqlite, #x)
|
||
|
|
||
|
CSqlite SqliteOpen(IConsole *pConsole, IStorage *pStorage, const char *pPath);
|
||
|
CSqliteStmt SqlitePrepare(IConsole *pConsole, sqlite3 *pSqlite, const char *pStatement);
|
||
|
#endif // ENGINE_SQLITE_H
|