diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-10-17 09:31:54 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-10-17 09:31:54 +0200 |
commit | 8338bb049db44d9b470b2a76acc5853b92915238 (patch) | |
tree | 19f95ec98adadec6e4a8254a720c0b059d2bd927 /prepared/person.hxx | |
parent | 1eb99114e1d7741ecdb5a6b2396c9cfd86c5dee4 (diff) |
Add example for prepared query usage
Diffstat (limited to 'prepared/person.hxx')
-rw-r--r-- | prepared/person.hxx | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/prepared/person.hxx b/prepared/person.hxx new file mode 100644 index 0000000..dc8e6fe --- /dev/null +++ b/prepared/person.hxx @@ -0,0 +1,61 @@ +// file : prepared/person.hxx +// copyright : not copyrighted - public domain + +#ifndef PERSON_HXX +#define PERSON_HXX + +#include <string> +#include <cstddef> // std::size_t + +#include <odb/core.hxx> + +#pragma db object +class person +{ +public: + person (const std::string& first, + const std::string& last, + unsigned short age) + : first_ (first), last_ (last), age_ (age) + { + } + + const std::string& + first () const + { + return first_; + } + + const std::string& + last () const + { + return last_; + } + + unsigned short + age () const + { + return age_; + } + +private: + friend class odb::access; + + person () {} + + #pragma db id auto + unsigned long id_; + + std::string first_; + std::string last_; + unsigned short age_; +}; + +#pragma db view object(person) +struct person_count +{ + #pragma db column("count(" + person::id_ + ")") + std::size_t count; +}; + +#endif // PERSON_HXX |