diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-01 11:16:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-01 11:16:00 +0200 |
commit | c97a759dcc080705c956c87fce076709ca66a0c8 (patch) | |
tree | 0f11125e3137cef9fc11d669f8addc2955df0460 /access/driver.cxx | |
parent | 55268128a30a56bfd42a4ffb382ad3a5179a739f (diff) |
Add 'access' and 'pimpl' examples
These illustrate the use of accessor/modifier functions and expressions
as well as virtual data members.
Diffstat (limited to 'access/driver.cxx')
-rw-r--r-- | access/driver.cxx | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/access/driver.cxx b/access/driver.cxx new file mode 100644 index 0000000..f5d34c8 --- /dev/null +++ b/access/driver.cxx @@ -0,0 +1,56 @@ +// file : access/driver.cxx +// copyright : not copyrighted - public domain + +#include <memory> // std::auto_ptr +#include <iostream> + +#include <odb/database.hxx> +#include <odb/transaction.hxx> + +#include "database.hxx" // create_database + +#include "person.hxx" +#include "person-odb.hxx" + +using namespace std; +using namespace odb::core; + +int +main (int argc, char* argv[]) +{ + try + { + auto_ptr<database> db (create_database (argc, argv)); + + { + person john ("john@doe.com", "John", "X", "Doe", 31); + person jane ("jane@doe.com", "Jane", "Y", "Doe", 29); + + transaction t (db->begin ()); + db->persist (john); + db->persist (jane); + t.commit (); + } + + { + typedef odb::result<person> result; + + transaction t (db->begin ()); + result r (db->query<person> ()); + + for (result::iterator i (r.begin ()); i != r.end (); ++i) + cout << i->getFirst () << ' ' + << i->g_middle () << ' ' + << i->last () << ' ' + << i->email () << ' ' + << i->age () << endl; + + t.commit (); + } + } + catch (const odb::exception& e) + { + cerr << e.what () << endl; + return 1; + } +} |