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
@@ -179,6 +179,11 @@ void mysql_parameter_binder::bind(size_t pos, const std::string &str, size_t siz
detail::bind_value(MYSQL_TYPE_VAR_STRING, str.data(), size, bind_params_[pos], is_null_vector[pos].is_null);
}
void mysql_parameter_binder::bind(size_t pos, const utils::blob &blob)
{
}
std::vector<MYSQL_BIND> &mysql_parameter_binder::bind_params()
{
return bind_params_;