Add files via upload

This commit is contained in:
Chris-bot374
2024-07-06 11:59:11 +02:00
committed by GitHub
parent 906245c603
commit 743f831c97
6 changed files with 638 additions and 0 deletions

14
src/Core/DBHandler.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef DBHANDLER_HPP_
#define DBHANDLER_HPP_
#include <pqxx/pqxx>
#include <string>
class DBHandler {
protected:
pqxx::connection connectionObject;
public:
DBHandler(std::string connStr);
};
#endif