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 /schema | |
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 'schema')
-rw-r--r-- | schema/custom/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/custom/driver.cxx b/schema/custom/driver.cxx index 1ca563c..9d049ed 100644 --- a/schema/custom/driver.cxx +++ b/schema/custom/driver.cxx @@ -150,7 +150,7 @@ main (int argc, char* argv[]) session s; transaction t (db->begin ()); - result r (db->query<employee> (query::name::last == "Doe")); + result r (db->query<employee> (query::name.last == "Doe")); for (result::iterator i (r.begin ()); i != r.end (); ++i) { |