aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/date-time/sqlite/default-mapping.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/date-time/sqlite/default-mapping.hxx')
-rw-r--r--odb/qt/date-time/sqlite/default-mapping.hxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/odb/qt/date-time/sqlite/default-mapping.hxx b/odb/qt/date-time/sqlite/default-mapping.hxx
new file mode 100644
index 0000000..82321af
--- /dev/null
+++ b/odb/qt/date-time/sqlite/default-mapping.hxx
@@ -0,0 +1,28 @@
+// file : odb/qt/date-time/sqlite/default-mapping.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_DATE_TIME_SQLITE_DEFAULT_MAPPING_HXX
+#define ODB_QT_DATE_TIME_SQLITE_DEFAULT_MAPPING_HXX
+
+#include <QDate>
+#include <QTime>
+#include <QDateTime>
+
+// Map QDate to SQLite TEXT by default. QDate provides a null representation
+// so allow NULL values by default.
+//
+#pragma db value(QDate) type("TEXT")
+
+// Map QTime to SQLite TEXT by default. QTime provides a null representation
+// so allow NULL values by default.
+//
+#pragma db value(QTime) type("TEXT")
+
+// Map QDateTime to SQLite TEXT by default. QDateTime provides a null
+// representation so allow NULL values by default.
+//
+#pragma db value(QDateTime) type("TEXT")
+
+#endif // ODB_QT_DATE_TIME_SQLITE_DEFAULT_MAPPING_HXX