diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-20 11:53:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-20 11:53:03 +0200 |
commit | 6149a26d16e63d6ab1d2a47a2135a835a8d2caef (patch) | |
tree | a32ab798d777cb96cef2d0d16dc4d63b85de6f6c /relationship/driver.cxx | |
parent | c1de8a85b35664526fe4339fe6231a725b940437 (diff) |
Change query syntax to use . for composite and -> for object pointer access
Also make non-inverse query columns act as both an object pointer and a
normal column. The latter allows us to use natural expressions such as
query<employee>::employer.is_null ().
Diffstat (limited to 'relationship/driver.cxx')
-rw-r--r-- | relationship/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/relationship/driver.cxx b/relationship/driver.cxx index ed359c1..1690d91 100644 --- a/relationship/driver.cxx +++ b/relationship/driver.cxx @@ -153,7 +153,7 @@ main (int argc, char* argv[]) transaction t (db->begin ()); result r (db->query<employee> ( - query::employer::name == "Complex Systems Inc")); + query::employer->name == "Complex Systems Inc")); for (result::iterator i (r.begin ()); i != r.end (); ++i) print (*i); |