// file : odb/mssql/query.ixx // license : ODB NCUEL; see accompanying LICENSE file namespace odb { namespace mssql { inline binding& query_base:: parameters_binding () const { return binding_; } template inline void query_base:: append (val_bind v, const char* conv) { append ( details::shared_ptr ( new (details::shared) query_param_impl (v)), conv); } template inline void query_base:: append (ref_bind r, const char* conv) { append ( details::shared_ptr ( new (details::shared) query_param_impl (r)), conv); } } }