// file : odb/mysql/query.ixx // license : GNU GPL v2; see accompanying LICENSE file namespace odb { namespace mysql { 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); } } }