aboutsummaryrefslogtreecommitdiff
path: root/odb/traits.hxx
AgeCommit message (Collapse)AuthorFilesLines
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-10-25Static multi-database supportBoris Kolpackov1-1/+0
Add new options (--multi-database, --default-database). Generate common code to -odb.?xx files and database-specific to -odb-<db>.?xx.
2012-10-08Ground work for multi-database supportBoris Kolpackov1-20/+57
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface.
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-0/+2
2012-02-28Add support for object pointers with two template parametersBoris Kolpackov1-0/+12
Such as C++11 std::unique_ptr.
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-0/+20
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const.
2011-09-05Support for views; native partBoris Kolpackov1-17/+73
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-11-22Add session, database operations on pointers and const objectsBoris Kolpackov1-1/+60
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-11-15Add support for custom object pointersBoris Kolpackov1-18/+17
New option: --default-pointer. New object pragma specifier: pointer.
2010-10-27Implement support for composite value typesBoris Kolpackov1-0/+5
New test: common/composite.
2010-09-20Rename store() to update()Boris Kolpackov1-1/+1
2010-08-26Add support for creating other build systems (meta-building)Boris Kolpackov1-0/+4
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations.
2010-08-19Remove unused id_source constantBoris Kolpackov1-6/+0
2010-08-18Move shared_ptr to the details namespaceBoris Kolpackov1-1/+0
2010-08-18Move buffer to the details namespaceBoris Kolpackov1-1/+0
2010-08-16Add pointer guard for naked pointerBoris Kolpackov1-6/+6
2010-08-13Move value_traits to the DB-specific namespaceBoris Kolpackov1-25/+0
2010-08-03Use class instead of structBoris Kolpackov1-1/+2
2010-07-30Add value type traitsBoris Kolpackov1-0/+25
2010-07-22Rename insert and update to persist and store in traitsBoris Kolpackov1-2/+2
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-21/+21
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+93