aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/uuid/mssql/uuid-mapping.hxx
blob: fbb9eebb7ecc872f3cf72e9e97ff0cf6d6bde4fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : odb/boost/uuid/mssql/uuid-mapping.hxx
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_BOOST_UUID_MSSQL_UUID_MAPPING_HXX
#define ODB_BOOST_UUID_MSSQL_UUID_MAPPING_HXX

#include <boost/version.hpp>

// UUID library is available since 1.42.0.
//
#if BOOST_VERSION >= 104200

#include <boost/uuid/uuid.hpp>

// By default map boost::uuids::uuid to SQL Server UNIQUEIDENTIFIER 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("UNIQUEIDENTIFIER") null

#endif // BOOST_VERSION
#endif // ODB_BOOST_UUID_MSSQL_UUID_MAPPING_HXX