aboutsummaryrefslogtreecommitdiff
path: root/composite/driver.cxx
AgeCommit message (Collapse)AuthorFilesLines
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski1-5/+5
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
2012-02-22Add support for composite object idsBoris Kolpackov1-3/+8
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2012-01-08Add support for defining composite value type as class template instantiationsBoris Kolpackov1-2/+5
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-13Add composite, relationship, and inverse examplesBoris Kolpackov1-0/+101
All add the TR1 <memory> test for the latter two examples.