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 /composite/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 'composite/driver.cxx')
-rw-r--r-- | composite/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composite/driver.cxx b/composite/driver.cxx index 9c50d45..56be15d 100644 --- a/composite/driver.cxx +++ b/composite/driver.cxx @@ -82,7 +82,7 @@ main (int argc, char* argv[]) transaction t (db->begin ()); result r (db->query<person> ( - query::name::extras::nickname == "Squeaky")); + query::name.extras.nickname == "Squeaky")); if (!r.empty ()) { |