summaryrefslogtreecommitdiff
path: root/libodb-pgsql/odb/pgsql/auto-handle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-pgsql/odb/pgsql/auto-handle.cxx')
-rw-r--r--libodb-pgsql/odb/pgsql/auto-handle.cxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/libodb-pgsql/odb/pgsql/auto-handle.cxx b/libodb-pgsql/odb/pgsql/auto-handle.cxx
new file mode 100644
index 0000000..d6c0565
--- /dev/null
+++ b/libodb-pgsql/odb/pgsql/auto-handle.cxx
@@ -0,0 +1,24 @@
+// file : odb/pgsql/auto-handle.cxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <libpq-fe.h>
+
+#include <odb/pgsql/auto-handle.hxx>
+
+namespace odb
+{
+ namespace pgsql
+ {
+ void handle_traits<PGconn>::
+ release (PGconn* h)
+ {
+ PQfinish (h);
+ }
+
+ void handle_traits<PGresult>::
+ release (PGresult* h)
+ {
+ PQclear (h);
+ }
+ }
+}