// file : odb/qt/basic/sqlite/qstring-traits.hxx // copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX #define ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX #include #include // std::memcpy #include // std::size_t #include #include #include namespace odb { namespace sqlite { template <> struct image_traits { typedef details::buffer image_type; // Use UTF-16 binding for QString. // static const bind::buffer_type bind_value = bind::text16; }; template <> struct default_value_traits { public: typedef QString value_type; typedef QString query_type; typedef details::buffer image_type; static void set_value (QString& v, const details::buffer& b, std::size_t n, bool is_null) { if (is_null) v = QString (); else v.setUtf16 (reinterpret_cast (b.data ()), static_cast (n / 2)); // In characters. } static void set_image (details::buffer& b, std::size_t& n, bool& is_null, const QString& v) { if (v.isNull ()) is_null = true; else { is_null = false; n = static_cast (v.size ()) * 2; // In bytes. if (n > b.capacity ()) b.capacity (n); std::memcpy (b.data (), v.utf16 (), n); } } }; template <> struct default_type_traits { static const database_type_id db_type_id = id_text; }; } } #include #endif // ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX