mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
7 changed files with 57 additions and 5 deletions
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
#include "database.hpp" |
||||
|
||||
using namespace lib; |
||||
|
||||
Database::Database( |
||||
const char * filename |
||||
) { |
||||
status = sqlite3_open( |
||||
filename, |
||||
&connection |
||||
); |
||||
} |
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
#ifndef LIB_DATABASE_H |
||||
#define LIB_DATABASE_H |
||||
|
||||
#include <sqlite3.h> |
||||
|
||||
namespace lib |
||||
{ |
||||
class Database |
||||
{ |
||||
private: |
||||
|
||||
int status; |
||||
|
||||
char * error; |
||||
|
||||
sqlite3 * connection; |
||||
|
||||
public: |
||||
|
||||
Database( |
||||
const char * filename |
||||
); |
||||
}; |
||||
} |
||||
|
||||
#endif // LIB_DATABASE_H
|
Loading…
Reference in new issue