diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-13 12:07:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 15:45:46 +0200 |
commit | 806df44f9182ebd1cb86bc31189370a3e595d3b9 (patch) | |
tree | c9f2acbc6935ffdb6f85256b6ba55a36e3ef9e64 /boost/mssql/date-time/test.hxx | |
parent | 506edcf7bb2a9c099f9aebc84a0a0d18c8dd45d7 (diff) |
Boost profile implementation for SQL Server
Diffstat (limited to 'boost/mssql/date-time/test.hxx')
-rw-r--r-- | boost/mssql/date-time/test.hxx | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/boost/mssql/date-time/test.hxx b/boost/mssql/date-time/test.hxx new file mode 100644 index 0000000..7bbd15d --- /dev/null +++ b/boost/mssql/date-time/test.hxx @@ -0,0 +1,51 @@ +// file : boost/mssql/date-time/test.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include <vector> + +#include <boost/date_time/gregorian/gregorian_types.hpp> +#include <boost/date_time/posix_time/posix_time_types.hpp> + +#include <odb/core.hxx> + +#pragma db object +struct object +{ + object () + { + } + + bool + operator== (const object& x) const + { + return + id == x.id && + dates == x.dates && + times == x.times && + times_dt == x.times_dt && + times_sdt == x.times_sdt && + durations == x.durations; + } + + #pragma db id auto + unsigned long id; + + std::vector<boost::gregorian::date> dates; + + std::vector<boost::posix_time::ptime> times; + + #pragma db value_type("DATETIME") + std::vector<boost::posix_time::ptime> times_dt; + + #pragma db value_type("SMALLDATETIME") + std::vector<boost::posix_time::ptime> times_sdt; + + std::vector<boost::posix_time::time_duration> durations; +}; + +#endif // TEST_HXX |