Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-03 | Implement nested id support | Boris Kolpackov | 4 | -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-07 | Fix to use traditional const style | Boris Kolpackov | 1 | -16/+16 | |
2015-02-06 | Update copyright | Boris Kolpackov | 3 | -3/+3 | |
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 1 | -1/+4 | |
2013-09-17 | Add support for defining composite values inside persistent classes, etc | Boris Kolpackov | 2 | -0/+73 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 1 | -2/+4 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 1 | -16/+13 | |
Only possible in the development build system at this stage. | |||||
2013-06-13 | Handle --database option directly in automake and VC++ projects | Boris Kolpackov | 1 | -3/+4 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 1 | -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-09 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 1 | -1/+3 | |
2012-04-27 | Add support for NULL pointers to objects with composite object ids | Boris Kolpackov | 2 | -1/+124 | |
2012-04-26 | Make session optional | Boris Kolpackov | 3 | -6/+2 | |
2012-04-23 | Assign table prefix to namespace instead of to each class | Boris Kolpackov | 1 | -9/+16 | |
2012-02-24 | C++11 support (pass --std ODB compiler option in build makefiles) | Boris Kolpackov | 1 | -0/+5 | |
2012-02-22 | Add support for composite object ids | Boris Kolpackov | 4 | -0/+1159 | |
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated. |