Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-03 | Implement nested id support | Boris Kolpackov | 1 | -730/+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-06 | Update copyright | Boris Kolpackov | 1 | -1/+1 | |
2013-09-17 | Add support for defining composite values inside persistent classes, etc | Boris Kolpackov | 1 | -0/+26 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-04-27 | Add support for NULL pointers to objects with composite object ids | Boris Kolpackov | 1 | -0/+71 | |
2012-04-26 | Make session optional | Boris Kolpackov | 1 | -1/+1 | |
2012-02-22 | Add support for composite object ids | Boris Kolpackov | 1 | -0/+633 | |
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated. |