diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-05 14:58:54 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-05 14:58:54 +0200 |
commit | 9fe985cdce9f0e1f9bee0e3cfc7a834b842f1906 (patch) | |
tree | c3eee4245d4cdd3b828d5dceb6efdc150d2bc483 /odb/qt/basic/mysql/default-mapping.hxx | |
parent | cdca463703de22e87d0d8f995d22f6d95fe89d6c (diff) |
Support for Qt QUuid persistence
This support was added to the basic sub-profile. New test: qt/common/basic.
Updated the qt example to use QUuid as an object id.
Diffstat (limited to 'odb/qt/basic/mysql/default-mapping.hxx')
-rw-r--r-- | odb/qt/basic/mysql/default-mapping.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/odb/qt/basic/mysql/default-mapping.hxx b/odb/qt/basic/mysql/default-mapping.hxx index 49f28fa..492a30e 100644 --- a/odb/qt/basic/mysql/default-mapping.hxx +++ b/odb/qt/basic/mysql/default-mapping.hxx @@ -7,6 +7,7 @@ #include <QtCore/QString> #include <QtCore/QByteArray> +#include <QtCore/QUuid> // Map QString to MySQL TEXT for non-id and to VARCHAR(256) for id members. // MySQL cannot have primary key of the TEXT type. Allow NULL values by @@ -19,4 +20,10 @@ // #pragma db value(QByteArray) type("BLOB") null +// By default map QUuid to MySQL BINARY(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("BINARY(16)") null + #endif // ODB_QT_BASIC_MYSQL_DEFAULT_MAPPING_HXX |