// file : odb/pgsql/auto-handle.cxx // copyright : Copyright (c) 2005-2013 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include namespace odb { namespace pgsql { void handle_traits:: release (PGconn* h) { PQfinish (h); } void handle_traits:: release (PGresult* h) { PQclear (h); } } }