This commit is contained in:
AJ
2024-07-10 09:52:22 +02:00
parent 8a8901c30a
commit d448705f1c
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ bool DBHandler::createVeranstaltung(const std::string& name, const std::string&
"INSERT INTO Veranstaltung (name, ort, raum, dauer) VALUES ({}, {}, {}, {})",
W.quote(name), W.quote(cmp), W.quote(raum), W.quote(dauer)
);
fmt::println(query);
fmt::print(query);
W.exec(query);
W.commit( );
return true;