From 0ac8f52ddfae8537651c65b8ab8b32db47756e74 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 4 Feb 2015 17:23:54 +0200 Subject: Implement object loading views See section 10.2 in the manual for details. --- view/driver.cxx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'view/driver.cxx') diff --git a/view/driver.cxx b/view/driver.cxx index cbe26ee..74d6eed 100644 --- a/view/driver.cxx +++ b/view/driver.cxx @@ -277,6 +277,44 @@ main (int argc, char* argv[]) t.commit (); } + // The same but using the object loading view. + // + { + typedef odb::query query; + typedef odb::result result; + + transaction t (db->begin ()); + + // We have to use a session in order for the object pointers + // in our view and object pointers inside objects that we load + // to point to the same instances, where appropriate. + // + session s; + + result r (db->query ( + query::res::name == query::nat::name)); + + cout << "Employees residing inside the country of nationality" << endl; + + for (result::iterator i (r.begin ()); i != r.end (); ++i) + { + assert (i->e->nationality () == i->nat); + assert (i->e->residence () == i->res); + + const employee& e (*i->e); + const country& r (*i->res); + const country& n (*i->nat); + + cout << " " << e.first () << " " << e.last () << " " + << r.name () << " " << n.name () << endl; + } + + cout << endl; + + t.commit (); + } + + // Get the list of employees that have accumulated vacation days. // { -- cgit v1.1