macro_rules! convert_named_params {
() => { ... };
($(($param_name:expr, $param_val:expr)),+ $(,)?) => { ... };
}Expand description
Custom implementation of rusqlite::named_params! to use expr instead of literal as $param_name,
and append the “:” named parameters prefix.