finished statement cache class

This commit is contained in:
2025-08-05 19:30:40 +02:00
parent 31964e55c1
commit 35fad9f47c
13 changed files with 410 additions and 74 deletions
@@ -15,6 +15,10 @@ void statement_proxy::reset() const {
statement_->reset();
}
std::string statement_proxy::sql() const {
return statement_->query_.sql;
}
std::unique_ptr<utils::attribute_writer> statement_proxy::create_binder() const {
return statement_->create_binder();
}