// file : odb/boost/uuid/oracle/uuid-mapping.hxx // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_BOOST_UUID_ORACLE_UUID_MAPPING_HXX #define ODB_BOOST_UUID_ORACLE_UUID_MAPPING_HXX #include // UUID library is available since 1.42.0. // #if BOOST_VERSION >= 104200 #include // By default map boost::uuids::uuid to Oracle RAW(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("RAW(16)") null #endif // BOOST_VERSION #endif // ODB_BOOST_UUID_ORACLE_UUID_MAPPING_HXX