From 337446204c4b86b40ad83235cb956422158e7fec Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Tue, 5 Jul 2011 19:55:31 +0200 Subject: Add traits for PostgreSQL query test --- common/query/traits-pgsql.hxx | 59 +++++++++++++++++++++++++++++++++++++++++++ common/query/traits.hxx | 2 ++ 2 files changed, 61 insertions(+) create mode 100644 common/query/traits-pgsql.hxx diff --git a/common/query/traits-pgsql.hxx b/common/query/traits-pgsql.hxx new file mode 100644 index 0000000..5b5c5d3 --- /dev/null +++ b/common/query/traits-pgsql.hxx @@ -0,0 +1,59 @@ +// file : common/query/traits-pgsql.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TRAITS_PGSQL_HXX +#define TRAITS_PGSQL_HXX + +#include +#include // std::auto_ptr +#include // std::memcpy + +#include + +namespace odb +{ + namespace pgsql + { + template <> + class value_traits, id_string> + { + public: + typedef std::auto_ptr value_type; + typedef std::string query_type; + typedef details::buffer image_type; + + static void + set_value (std::auto_ptr& v, + const details::buffer& b, + std::size_t n, + bool is_null) + { + v.reset (is_null ? 0 : new std::string (b.data (), n)); + } + + static void + set_image (details::buffer& b, + std::size_t& n, + bool& is_null, + const std::auto_ptr& v) + { + is_null = v.get () == 0; + + if (!is_null) + { + n = v->size (); + + if (n > b.capacity ()) + b.capacity (n); + + if (n != 0) + std::memcpy (b.data (), v->c_str (), n); + } + } + }; + } +} + +#endif // TRAITS_PGSQL_HXX diff --git a/common/query/traits.hxx b/common/query/traits.hxx index ce8b3e6..ccc279b 100644 --- a/common/query/traits.hxx +++ b/common/query/traits.hxx @@ -12,6 +12,8 @@ # include "traits-mysql.hxx" #elif defined(DATABASE_SQLITE) # include "traits-sqlite.hxx" +#elif defined(DATABASE_PGSQL) +# include "traits-pgsql.hxx" #endif #endif // TRAITS_HXX -- cgit v1.1