aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/date-time/pgsql/default-mapping.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-07-22 00:06:17 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-07-22 10:01:36 +0200
commitd8b3a3388349d7055423f35911ef8ae17aba5ab4 (patch)
tree3e36125efb4ffa4ad3687a601e9ca26b4d0302a0 /odb/qt/date-time/pgsql/default-mapping.hxx
parent3ccd52b46db124086345f3c7b8e95e435d500903 (diff)
Add PostgreSQL support to Qt profile
Diffstat (limited to 'odb/qt/date-time/pgsql/default-mapping.hxx')
-rw-r--r--odb/qt/date-time/pgsql/default-mapping.hxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/odb/qt/date-time/pgsql/default-mapping.hxx b/odb/qt/date-time/pgsql/default-mapping.hxx
new file mode 100644
index 0000000..becf577
--- /dev/null
+++ b/odb/qt/date-time/pgsql/default-mapping.hxx
@@ -0,0 +1,28 @@
+// file : odb/qt/date-time/pgsql/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_PGSQL_DEFAULT_MAPPING_HXX
+#define ODB_QT_DATE_TIME_PGSQL_DEFAULT_MAPPING_HXX
+
+#include <QtCore/QDate>
+#include <QtCore/QTime>
+#include <QtCore/QDateTime>
+
+// Map QDate to PostgreSQL DATE by default. QDate provides a null
+// representation so allow NULL values by default.
+//
+#pragma db value(QDate) type("DATE") null
+
+// Map QTime to PostgreSQL TIME by default. QTime provides a null
+// representation so allow NULL values by default.
+//
+#pragma db value(QTime) type("TIME") null
+
+// Map QDateTime to PostgreSQL TIMESTAMP by default. QDateTime provides a null
+// representation so allow NULL values by default.
+//
+#pragma db value(QDateTime) type("TIMESTAMP") null
+
+#endif // ODB_QT_DATE_TIME_PGSQL_DEFAULT_MAPPING_HXX