statement binding progress

This commit is contained in:
Sascha Kühl
2025-10-13 16:14:03 +02:00
parent 24842f3313
commit d0e2e4340e
12 changed files with 147 additions and 101 deletions
+5 -2
View File
@@ -86,11 +86,14 @@ utils::result<std::optional<record>, utils::error> statement::fetch_one() const
return utils::ok(std::optional{*first.release()});
}
void statement::reset() const
{
void statement::reset() const {
statement_proxy_->reset();
}
size_t statement::bind_pos() const {
return statement_proxy_->bind_pos();
}
std::string statement::sql() const {
return statement_proxy_->sql();
}