mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
35 lines
585 B
C++
35 lines
585 B
C++
#ifndef SQLITE3_CONNECTION
|
|
#define SQLITE3_CONNECTION
|
|
|
|
//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 <sqlite3.h>
|
|
|
|
class SQLite3Connection {
|
|
public:
|
|
SQLite3Connection() {
|
|
|
|
int ret = sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
|
|
if (ret != SQLITE_OK) {
|
|
printf("SQLITE3 multithreading is not supported!\n");
|
|
}
|
|
|
|
ret = sqlite3_open("", &conn);
|
|
}
|
|
|
|
~SQLite3Connection() {
|
|
sqlite3_close(conn);
|
|
}
|
|
|
|
sqlite3 *conn;
|
|
};
|
|
|
|
//#undef IS_NUM
|
|
|
|
#endif |