mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
12 lines
No EOL
170 B
C++
12 lines
No EOL
170 B
C++
#include "database.hpp"
|
|
|
|
using namespace lib;
|
|
|
|
Database::Database(
|
|
const char * filename
|
|
) {
|
|
status = sqlite3_open(
|
|
filename,
|
|
&connection
|
|
);
|
|
} |