aboutsummaryrefslogtreecommitdiff
path: root/odb/session.txx
AgeCommit message (Collapse)AuthorFilesLines
2013-02-09Remove unnecessary local typedef (GCC 4.8 warning)Boris Kolpackov1-2/+0
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-20Add cache_ suffix to session cache functionsBoris Kolpackov1-25/+14
This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names.
2013-01-16Make session cache management functions static, add notificationsBoris Kolpackov1-7/+19
2013-01-16Add support for using custom session implementationsBoris Kolpackov1-2/+0
New option, --session-type.
2013-01-16Cleanup object cache position typeBoris Kolpackov1-2/+2
2012-09-17Remove unused local typedefs (GCC 4.8 warning)2.1.0Boris Kolpackov1-2/+0
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-1/+1
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-09-21Rework const object handlingBoris Kolpackov1-34/+15
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const.
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-11-22Add session, database operations on pointers and const objectsBoris Kolpackov1-0/+116
Currently, session is just an object cache. The persist, update, and erase database operations are overloaded to also work on object pointers. All the database operations and the query facility now support const objects. New session-related exceptions: not_in_session, already_in_session, const_object.
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-320/+0
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+320