statement binding progress
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user