aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/simple-object-statements.txx
AgeCommit message (Collapse)AuthorFilesLines
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-09-17Schema versioning supportBoris Kolpackov1-6/+13
2013-08-14Add support for object sectionsBoris Kolpackov1-1/+0
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-16Make session cache management functions static, add notificationsBoris Kolpackov1-1/+1
2013-01-16Implement two-phase session insertionBoris Kolpackov1-7/+4
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).
2012-06-18Allocate container traits lazily and only when their definition is seenBoris Kolpackov1-1/+0
This fixes a problem with polymorphic hierarchies spread over multiple files in which case the source code for the derived class does not have the definition of the container traits for the base class. See the comment in the source code for further details.
2012-04-26Make session optionalBoris Kolpackov1-8/+8
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-0/+145