#include "headers/data.h" namespace data { SQLite::Database start_db() { /* Opens the database, creates it if it can't find the file. */ SQLite::Database db("test.db3", SQLite::OPEN_READWRITE | SQLite::OPEN_CREATE); while (sodium_init() < 0) { std::cout << "SODIUM NOT WORKING"; /* This shouldn't be here, really, but I can't think of a better place where it runs at least once. This seeds the random generator needed for salts and other stuff, and needs to be run at least once when working with any libsodium function. */ } //sql syntax is surprisingly readable. db.exec( "create table if not exists Customer (id integer primary key, name " "text, password text, verhicle int)"); // getting errors when using bool, so i used an int instead. db.exec( "create table if not exists Park_spot (id integer primary key, taken " "int, customer_id int)"); db.exec( "create table if not exists Park_time (id integer primary key, " "customer_id int, spot_id int, start int, end int, duration int)"); return db; } } // namespace data