added blob interface to backend binder classes

This commit is contained in:
2024-01-23 07:20:34 +01:00
parent 9509e56f3e
commit 9c8e402692
5 changed files with 19 additions and 1 deletions
@@ -134,6 +134,11 @@ void postgres_parameter_binder::bind(size_t pos, const std::string &str, size_t
bind(pos, str);
}
void postgres_parameter_binder::bind(size_t pos, const utils::blob &blob)
{
}
const std::vector<const char *> &postgres_parameter_binder::params() const
{
return params_;