statement cache progress
This commit is contained in:
@@ -6,4 +6,14 @@ statement_impl::statement_impl(query_context query)
|
||||
: query_(std::move(query))
|
||||
{}
|
||||
|
||||
void statement_impl::bind(size_t pos, const char *value, size_t size)
|
||||
{
|
||||
data_type_traits<const char*>::bind_value(binder(), pos, value, size);
|
||||
}
|
||||
|
||||
void statement_impl::bind(size_t pos, std::string &val, size_t size)
|
||||
{
|
||||
data_type_traits<std::string>::bind_value(binder(), pos, val, size);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user