aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/mysql/qstring-traits.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-03-31 15:36:02 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 14:38:40 +0200
commit621bc135b9825fc9f18ada204f67d3800c5f6fda (patch)
treefa94cea520c51c44f5fc25b85d7932b7f738a4aa /odb/qt/mysql/qstring-traits.hxx
parentf43df635ef3efbb9ac242024c95c5949fb21a919 (diff)
Complete qt/basic and qt/date-time implementations
Diffstat (limited to 'odb/qt/mysql/qstring-traits.hxx')
-rw-r--r--odb/qt/mysql/qstring-traits.hxx95
1 files changed, 0 insertions, 95 deletions
diff --git a/odb/qt/mysql/qstring-traits.hxx b/odb/qt/mysql/qstring-traits.hxx
deleted file mode 100644
index facb569..0000000
--- a/odb/qt/mysql/qstring-traits.hxx
+++ /dev/null
@@ -1,95 +0,0 @@
-// file : odb/qt/mysql/qstring-traits.hxx
-// author : Constantin Michael <constantin@codesynthesis.com>
-// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_QT_MYSQL_QSTRING_TRAITS_HXX
-#define ODB_QT_MYSQL_QSTRING_TRAITS_HXX
-
-#include <odb/pre.hxx>
-
-#include <cstring> // std::memcpy
-#include <cstddef> // std::size_t
-
-#include <QString>
-
-#include <odb/details/buffer.hxx>
-#include <odb/mysql/traits.hxx>
-
-namespace odb
-{
- namespace mysql
- {
- class qstring_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::fromUtf8 (b.data (), n);
- else
- v.clear ();
- }
-
- static void
- set_image (details::buffer& b,
- std::size_t& n,
- bool& is_null,
- const QString& v)
- {
- is_null = false;
-
- const QByteArray& a (v.toUtf8 ());
- n = a.size ();
-
- if (n > b.capacity ())
- b.capacity (n);
-
- if (n != 0)
- std::memcpy (b.data (), a.data (), n);
- }
- };
-
- template <>
- struct default_value_traits<
- QString, details::buffer, id_string>: qstring_value_traits
- {
- };
-
- template <>
- struct default_value_traits<
- QString, details::buffer, id_decimal>: qstring_value_traits
- {
- };
-
- template <>
- struct default_value_traits<
- QString, details::buffer, id_enum>: qstring_value_traits
- {
- };
-
- template <>
- struct default_value_traits<
- QString, details::buffer, id_set>: qstring_value_traits
- {
- };
-
- template <>
- struct default_type_traits<QString>
- {
- static const database_type_id db_type_id = id_string;
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_QT_MYSQL_QSTRING_TRAITS_HXX