Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 1 | -1/+4 | |
2013-09-17 | Fix UPDATE statement for smart containers with read-only value members | Boris Kolpackov | 2 | -0/+61 | |
Here we have to include them (think what happens when we erase an element somewhere in the middle of a container). | |||||
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 | -2/+3 | |
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-12 | Disable non-const to const iterator comparison test for Sun CC's STLPort | Boris Kolpackov | 1 | -1/+4 | |
2013-02-12 | Workarounds for non-standard Sun CC STL | Boris Kolpackov | 1 | -2/+13 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2013-02-05 | Add support for change-tracking containers | Boris Kolpackov | 4 | -0/+890 | |
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking. |