From 9fe985cdce9f0e1f9bee0e3cfc7a834b842f1906 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 5 Sep 2012 14:58:54 +0200 Subject: 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. --- odb/qt/basic/pgsql/default-mapping.hxx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'odb/qt/basic/pgsql/default-mapping.hxx') diff --git a/odb/qt/basic/pgsql/default-mapping.hxx b/odb/qt/basic/pgsql/default-mapping.hxx index 6633fc5..5f3c2c1 100644 --- a/odb/qt/basic/pgsql/default-mapping.hxx +++ b/odb/qt/basic/pgsql/default-mapping.hxx @@ -7,6 +7,7 @@ #include #include +#include // Map QString to PostgreSQL TEXT by default. Allow NULL values by default as // QString provides a null representation. @@ -18,4 +19,10 @@ // #pragma db value(QByteArray) type("BYTEA") null +// By default map QUuid to PostgreSQL UUID 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("UUID") null + #endif // ODB_QT_BASIC_PGSQL_DEFAULT_MAPPING_HXX -- cgit v1.1