aboutsummaryrefslogtreecommitdiff
path: root/common/composite-id
AgeCommit message (Collapse)AuthorFilesLines
2015-07-03Implement nested id supportBoris Kolpackov4-1368/+0
Now the 'id' specifier can optionally include the data member path to the id inside the composite value. For example: #pragma db id(first) std::pair<int, int> p; Note that one somewhat counter-intuitive aspect of this new feature is that the whole member marked with id ('p' in the above example) and not just the actual id member ('p.first' in the above example) is treated as readonly. Such nested id also cannot be automatically assigned (auto specifier).
2015-02-07Fix to use traditional const styleBoris Kolpackov1-16/+16
2015-02-06Update copyrightBoris Kolpackov3-3/+3
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov1-1/+4
2013-09-17Add support for defining composite values inside persistent classes, etcBoris Kolpackov2-0/+73
2013-07-08Add support for Visual Studio 2005Boris Kolpackov1-2/+4
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov1-16/+13
Only possible in the development build system at this stage.
2013-06-13Handle --database option directly in automake and VC++ projectsBoris Kolpackov1-3/+4
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov1-1/+1
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing.
2013-02-09Update copyright yearBoris Kolpackov3-3/+3
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-1/+3
2012-04-27Add support for NULL pointers to objects with composite object idsBoris Kolpackov2-1/+124
2012-04-26Make session optionalBoris Kolpackov3-6/+2
2012-04-23Assign table prefix to namespace instead of to each classBoris Kolpackov1-9/+16
2012-02-24C++11 support (pass --std ODB compiler option in build makefiles)Boris Kolpackov1-0/+5
2012-02-22Add support for composite object idsBoris Kolpackov4-0/+1159
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.