relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
Loading...
Searching...
No Matches
results.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "results/result.hpp"
4
145namespace relx {
146
147// Convenient imports from the result namespace
148using result::Cell;
149using result::parse;
150using result::ResultError;
152using result::ResultSet;
153using result::Row;
154
155} // namespace relx
ResultProcessingResult< ResultSet > parse(const Query &, const std::string &raw_results)
Parse raw results from a database into a typed ResultSet (eager parsing)
Definition result.hpp:812
std::expected< T, ResultError > ResultProcessingResult
Type alias for result of processing operations.
Definition result.hpp:33
relx database connection