From a79bd67be617041cd65e8bdf988e8d8da523fd43 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 5 Sep 2012 11:59:26 +0200 Subject: Support for Boost uuid persistence New Boost sub-profile: uuid. New test: boost/common/uuid. Updated the boost example to use uuid as an object id. --- odb/boost/uuid/mysql/uuid-mapping.hxx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 odb/boost/uuid/mysql/uuid-mapping.hxx (limited to 'odb/boost/uuid/mysql/uuid-mapping.hxx') diff --git a/odb/boost/uuid/mysql/uuid-mapping.hxx b/odb/boost/uuid/mysql/uuid-mapping.hxx new file mode 100644 index 0000000..7654f62 --- /dev/null +++ b/odb/boost/uuid/mysql/uuid-mapping.hxx @@ -0,0 +1,23 @@ +// file : odb/boost/uuid/mysql/uuid-mapping.hxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_BOOST_UUID_MYSQL_UUID_MAPPING_HXX +#define ODB_BOOST_UUID_MYSQL_UUID_MAPPING_HXX + +#include + +// UUID library is available since 1.42.0. +// +#if BOOST_VERSION >= 104200 + +#include + +// By default map boost::uuids::uuid to MySQL BINARY(16) and use NULL to +// represent nil UUIDs. If NULL is disabled (e.g., at the member level), +// then we store the nil UUID (i.e., all bytes are zero). +// +#pragma db value(boost::uuids::uuid) type("BINARY(16)") null + +#endif // BOOST_VERSION +#endif // ODB_BOOST_UUID_MYSQL_UUID_MAPPING_HXX -- cgit v1.1