// file : odb/pgsql/tracer.cxx // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include #include namespace odb { namespace pgsql { tracer:: ~tracer () { } void tracer:: prepare (connection&, const statement&) { } void tracer:: execute (connection& c, const statement& s) { execute (c, s.text ()); } void tracer:: deallocate (connection&, const statement&) { } void tracer:: prepare (odb::connection& c, const odb::statement& s) { prepare (static_cast (c), static_cast (s)); } void tracer:: execute (odb::connection& c, const odb::statement& s) { execute (static_cast (c), static_cast (s)); } void tracer:: execute (odb::connection& c, const char* s) { execute (static_cast (c), s); } void tracer:: deallocate (odb::connection& c, const odb::statement& s) { deallocate (static_cast (c), static_cast (s)); } } }