2019-06-25 00:42:08 +00:00
|
|
|
#include <iostream>
|
2019-06-25 00:09:33 +00:00
|
|
|
#include <sqlite3.h>
|
|
|
|
#include <string>
|
|
|
|
|
2019-06-25 00:42:08 +00:00
|
|
|
namespace data {
|
2019-06-25 00:09:33 +00:00
|
|
|
|
2019-06-25 00:42:08 +00:00
|
|
|
static int callback(void* NotUsed, int argc, char** argv, char** azColName);
|
2019-06-25 00:09:33 +00:00
|
|
|
|
2019-06-25 00:42:08 +00:00
|
|
|
void open_db(sqlite3* db_);
|
2019-06-25 00:09:33 +00:00
|
|
|
|
2019-06-25 00:42:08 +00:00
|
|
|
/*
|
|
|
|
this initializes the table in the database.
|
|
|
|
*/
|
|
|
|
void initialize_db(sqlite3* db_);
|
2019-06-25 00:09:33 +00:00
|
|
|
|
2019-06-25 00:42:08 +00:00
|
|
|
} // namespace data
|