aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/basic/oracle/default-mapping.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/basic/oracle/default-mapping.hxx')
-rw-r--r--odb/qt/basic/oracle/default-mapping.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/odb/qt/basic/oracle/default-mapping.hxx b/odb/qt/basic/oracle/default-mapping.hxx
index d2097ca..40f7815 100644
--- a/odb/qt/basic/oracle/default-mapping.hxx
+++ b/odb/qt/basic/oracle/default-mapping.hxx
@@ -7,6 +7,7 @@
#include <QtCore/QString>
#include <QtCore/QByteArray>
+#include <QtCore/QUuid>
// Map QString to Oracle VARCHAR2 by default. Allow NULL values by default as
// QString provides a null representation.
@@ -18,4 +19,10 @@
//
#pragma db value(QByteArray) type("BLOB") null
+// By default map QUuid to Oracle RAW(16) and use NULL to represent null
+// UUIDs. If NULL is disabled (e.g., at the member level), then we store
+// the null UUID (i.e., all bytes are zero).
+//
+#pragma db value(QUuid) type("RAW(16)") null
+
#endif // ODB_QT_BASIC_ORACLE_DEFAULT_MAPPING_HXX