aboutsummaryrefslogtreecommitdiff
path: root/odb/result.txx
AgeCommit message (Collapse)AuthorFilesLines
2015-03-26Get pointer_type from correct traits (object, view)Boris Kolpackov1-3/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski1-0/+52
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
2011-09-05Support for views; native partBoris Kolpackov1-86/+0
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-11-26Add support for recursive object loadingBoris Kolpackov1-22/+14
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-2/+70
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-11/+3
New option: --default-pointer. New object pragma specifier: pointer.
2010-10-07Add support for persistent classes without default ctorsBoris Kolpackov1-0/+21
New test: common/ctor.
2010-08-10Add query supportBoris Kolpackov1-0/+13