usql update

usql is still very primitive..it just barely works
This commit is contained in:
2021-07-23 00:00:39 +02:00
parent 4f113ab2c5
commit 5005644d98
26 changed files with 877 additions and 472 deletions

View File

@@ -2,7 +2,7 @@
namespace usql {
Exception::Exception(const std::string &msg) {
Exception::Exception(const std::string &msg) : std::runtime_error(msg) {
cause = msg;
}