aboutsummaryrefslogtreecommitdiff
path: root/odb/result.hxx
AgeCommit message (Collapse)AuthorFilesLines
2010-11-26Add support for recursive object loadingBoris Kolpackov1-2/+2
If an object of a type needs to be loaded recursively, then it is addded to the delayed loading list which is processed once the statements are unlocked.
2010-11-22Add session, database operations on pointers and const objectsBoris Kolpackov1-10/+33
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-16Rework pointer traits, add naked, auto_ptr, and TR1 specializationsBoris Kolpackov1-1/+1
2010-11-15Add support for custom object pointersBoris Kolpackov1-5/+18
New option: --default-pointer. New object pragma specifier: pointer.
2010-10-07Add support for persistent classes without default ctorsBoris Kolpackov1-18/+1
New test: common/ctor.
2010-09-23Add swap(), empty(), and size() to result class templateBoris Kolpackov1-6/+34
2010-09-20Make result_iterator::operator* return referenceBoris Kolpackov1-6/+20
Add load() version that returns the dynamically-allocated instance.
2010-09-10Add support for result cachingBoris Kolpackov1-0/+15
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-18Move shared_ptr to the details namespaceBoris Kolpackov1-4/+5
2010-08-16Add pointer guard for naked pointerBoris Kolpackov1-4/+21
2010-08-13Cosmetic changeBoris Kolpackov1-1/+1
2010-08-10Rework result/result_iterator interactionBoris Kolpackov1-25/+45
2010-08-10Add ability to load result into an existing objectBoris Kolpackov1-0/+11
2010-08-10Make result copy-assignableBoris Kolpackov1-24/+24
Return result from database::query instead of pointer to impl
2010-08-10Add query supportBoris Kolpackov1-0/+188