mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
6 changed files with 65 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||||
|
#include "session.hpp" |
||||||
|
|
||||||
|
using namespace lib::database; |
||||||
|
|
||||||
|
Session::Session( |
||||||
|
sqlite3 * connection |
||||||
|
) { |
||||||
|
status = sqlite3_exec( |
||||||
|
connection, |
||||||
|
R"( |
||||||
|
CREATE TABLE IF NOT EXISTS `session` |
||||||
|
( |
||||||
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, |
||||||
|
`time` INTEGER NOT NULL, |
||||||
|
`request` VARCHAR(1024) |
||||||
|
) |
||||||
|
)", |
||||||
|
nullptr, |
||||||
|
nullptr, |
||||||
|
&error |
||||||
|
); |
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
#ifndef LIB_DATABASE_SESSION_H |
||||||
|
#define LIB_DATABASE_SESSION_H |
||||||
|
|
||||||
|
#include <sqlite3.h> |
||||||
|
|
||||||
|
namespace lib::database |
||||||
|
{ |
||||||
|
class Session |
||||||
|
{ |
||||||
|
private: |
||||||
|
|
||||||
|
int status; |
||||||
|
|
||||||
|
char * error; |
||||||
|
|
||||||
|
sqlite3 * connection; |
||||||
|
|
||||||
|
public: |
||||||
|
|
||||||
|
Session( |
||||||
|
sqlite3 * connection |
||||||
|
); |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // LIB_DATABASE_SESSION_H
|
Loading…
Reference in new issue