mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
34 lines
666 B
C++
34 lines
666 B
C++
#ifndef SQLITE3_CONNECTION
|
|
#define SQLITE3_CONNECTION
|
|
|
|
#include "core/database/database.h"
|
|
|
|
//Brynet has it aswell, and because of using namespace it is defined here aswell
|
|
//later this will be fixed better
|
|
//#ifdef IS_NUM
|
|
//#undef IS_NUM
|
|
//#endif
|
|
|
|
#include <cstdio>
|
|
|
|
#include "./sqlite/sqlite3.h"
|
|
|
|
class SQLite3Database : public Database {
|
|
public:
|
|
static Database *_creation_func();
|
|
static void _register();
|
|
static void _unregister();
|
|
|
|
void connect(const std::string &connection_str);
|
|
QueryResult *query(const std::string &query);
|
|
void query_run(const std::string &query);
|
|
|
|
SQLite3Database();
|
|
~SQLite3Database();
|
|
|
|
sqlite3 *conn;
|
|
};
|
|
|
|
//#undef IS_NUM
|
|
|
|
#endif |