aboutsummaryrefslogtreecommitdiff
path: root/common/relationship/driver.cxx
AgeCommit message (Collapse)AuthorFilesLines
2013-12-04Implement on_delete pragma for object pointersBoris Kolpackov1-159/+0
Translates to the ON DELETE SQL clause.
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-02-29Support for C++11 std::unique_ptr as object pointerBoris Kolpackov1-0/+14
This includes the odb::lazy_unique_ptr implementation.
2012-02-28Test std::shared_ptr in C++11 mode and std::tr1::shared_ptr in C++98 modeBoris Kolpackov1-3/+3
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
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-07-19New design for NULL semanticsBoris Kolpackov1-2/+3
Now, instead of being specified as part of the SQL type with the type pragma, there are separate null and not_null pragmas. The not_null pragma was used to control NULL-ness of object pointers. Now the two pragmas are used consistently for object pointers and simple values (and in the future will work for composite values and containers).
2011-03-28Recode tests to work with implementations lacking result::size()Boris Kolpackov1-1/+2
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-1/+1
Port all the examples and tests.
2011-01-24Workaround VC 10 bug1.1.0Boris Kolpackov1-1/+1
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-11-25Add support for object pointers in queryBoris Kolpackov1-0/+15
2010-11-22Use new pointer-based database operation overloadsBoris Kolpackov1-8/+8
2010-11-17Add support for unidirectional object relationshipsBoris Kolpackov1-0/+129
New test: common/relationship.