very basic version of usql

This commit is contained in:
2021-07-14 12:01:44 +02:00
parent f594437b61
commit 577370caef
21 changed files with 3189 additions and 1072 deletions

12
usql/exception.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "exception.h"
namespace usql {
Exception::Exception(const std::string &msg) {
cause = msg;
}
const char *Exception::what() const noexcept { return cause.c_str(); }
}