implemented session::remove

This commit is contained in:
Sascha Kühl
2025-10-16 15:40:43 +02:00
parent d08bdb9554
commit 1d40c72519
4 changed files with 80 additions and 12 deletions
@@ -26,12 +26,12 @@ public:
virtual utils::result<std::unique_ptr<query_result_impl>, utils::error> fetch(const parameter_binder& bindings) = 0;
template < class Type >
size_t bind_object(Type &obj, parameter_binder& bindings) {
void bind_object(Type &obj, parameter_binder& bindings) {
object_parameter_binder object_binder_;
object_binder_.reset(start_index());
object_binder_.bind(obj, bindings);
return object_binder_.current_index();
current_bind_pos_ = object_binder_.current_index();
}
template < class Type >