aboutsummaryrefslogtreecommitdiff
path: root/common/session/custom/makefile
AgeCommit message (Collapse)AuthorFilesLines
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2015-02-04Implement object loading viewsBoris Kolpackov1-2/+1
See section 10.2 in the manual for details.
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov1-1/+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-4/+5
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-11Add extra source to distBoris Kolpackov1-0/+1
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-02-06Fix incorrect dist variableBoris Kolpackov1-1/+1
2013-01-20Add extra headers to dist target variablesBoris Kolpackov1-1/+2
2013-01-16Implement two-phase session insertionBoris Kolpackov1-0/+114
On the first step an uninitialized object is inserted into the cache as before (this is necessary to handle recursive loading). The second step is to notify the session that the object has been initialized. On this second step the session can perform change tracking preparations, such as make a copy of the object or reset the modification flag. New test: common/session/custom (implements a custom session that uses copies to track changes).