aboutsummaryrefslogtreecommitdiff
path: root/inverse/driver.cxx
AgeCommit message (Collapse)AuthorFilesLines
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski1-5/+3
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
2012-03-01Resolve tr1/std::shared_ptr ambiguitiesBoris Kolpackov1-0/+2
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-09-20Change query syntax to use . for composite and -> for object pointer accessBoris Kolpackov1-1/+1
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 ().
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-1/+1
Port all the examples and tests.
2011-01-17Include missing headerBoris Kolpackov1-0/+1
2011-01-13Add composite, relationship, and inverse examplesBoris Kolpackov1-0/+258
All add the TR1 <memory> test for the latter two examples.