// file : odb/pgsql/query.ixx // copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file namespace odb { namespace pgsql { inline native_binding& query_base:: parameters_binding () const { return native_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); } } }