diff options
Diffstat (limited to 'common/query/traits.hxx')
-rw-r--r-- | common/query/traits.hxx | 54 |
1 files changed, 6 insertions, 48 deletions
diff --git a/common/query/traits.hxx b/common/query/traits.hxx index 097f785..ce8b3e6 100644 --- a/common/query/traits.hxx +++ b/common/query/traits.hxx @@ -6,54 +6,12 @@ #ifndef TRAITS_HXX #define TRAITS_HXX -#include <string> -#include <memory> // std::auto_ptr -#include <cstring> // std::memcpy +#include <common/config.hxx> -#include <odb/mysql/traits.hxx> - -namespace odb -{ - namespace mysql - { - template <> - class value_traits<std::auto_ptr<std::string>, details::buffer, id_string> - { - public: - typedef std::auto_ptr<std::string> value_type; - typedef std::string query_type; - typedef details::buffer image_type; - - static void - set_value (std::auto_ptr<std::string>& 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<std::string>& 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); - } - } - }; - } -} +#if defined(DATABASE_MYSQL) +# include "traits-mysql.hxx" +#elif defined(DATABASE_SQLITE) +# include "traits-sqlite.hxx" +#endif #endif // TRAITS_HXX |