has many primitive relation progress

This commit is contained in:
2026-05-08 15:53:52 +02:00
parent 1e08996087
commit a714cd2a53
6 changed files with 89 additions and 6 deletions
+2
View File
@@ -68,6 +68,8 @@ utils::result<query_result<record>, utils::error> statement::fetch() const {
}
utils::result<std::optional<record>, utils::error> statement::fetch_one() const {
logger_->on_fetch(statement_proxy_->sql());
std::cout << statement_proxy_->sql() << std::endl;
auto result = statement_proxy_->fetch(*bindings_);
if (!result.is_ok()) {
return utils::failure(result.err());