From a926388f73aed90d1aa9743d32ed4c049af6bf84 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Fri, 11 Nov 2011 13:43:01 +0200 Subject: Add Oracle support for Qt profile --- odb/qt/basic/oracle/qbyte-array-traits.hxx | 79 ++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 odb/qt/basic/oracle/qbyte-array-traits.hxx (limited to 'odb/qt/basic/oracle/qbyte-array-traits.hxx') diff --git a/odb/qt/basic/oracle/qbyte-array-traits.hxx b/odb/qt/basic/oracle/qbyte-array-traits.hxx new file mode 100644 index 0000000..58807b9 --- /dev/null +++ b/odb/qt/basic/oracle/qbyte-array-traits.hxx @@ -0,0 +1,79 @@ +// file : odb/qt/basic/oracle/qbyte-array-traits.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_QT_BASIC_ORACLE_QBYTE_ARRAY_TRAITS_HXX +#define ODB_QT_BASIC_ORACLE_QBYTE_ARRAY_TRAITS_HXX + +#include + +#include // std::memcpy +#include // std::size_t + +#include + +#include + +namespace odb +{ + namespace oracle + { + template <> + struct default_value_traits + { + typedef QByteArray value_type; + typedef QByteArray query_type; + typedef char* image_type; + + static void + set_value (QByteArray& v, + const char* b, + std::size_t n, + bool is_null) + { + if (is_null) + v = QByteArray (); + else + { + // Note that we cannot use replace() here since a suitable + // overload was only added in Qt 4.7. + // + v.resize (static_cast (n)); + std::memcpy (v.data (), b, n); + } + } + + static void + set_image (char* b, + std::size_t c, + std::size_t& n, + bool& is_null, + const QByteArray& v) + { + if (v.isNull ()) + is_null = true; + else + { + is_null = false; + + n = static_cast (v.size ()); + + //@@ Assert or throw? + // + assert (n <= c); + + std::memcpy (b, v.data (), n); + } + } + }; + + template <> + struct default_type_traits + { + static const database_type_id db_type_id = id_raw; + }; + } +} + +#endif // ODB_QT_BASIC_ORACLE_QBYTE_ARRAY_TRAITS_HXX -- cgit v1.1