aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.txx
AgeCommit message (Collapse)AuthorFilesLines
2011-08-18Fix custom recursive loading in post_load callbackBoris Kolpackov1-2/+1
Before we called the callback while holding the statements locked. As a result, if the callback tried to load another object of this type, it failed. Now we unlock the statements (since we have completely loaded the object from ODB's point of view) and then call the callback. The callback test has been updated to test this situation.
2011-07-04Implement support for database operations callbacksBoris Kolpackov1-2/+7
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback".
2011-04-25Pass id binding instead of id image in container traitsBoris Kolpackov1-4/+14
This will allow us to reuse things more.
2011-04-22Initial support for non-polymorphic inheritanceBoris Kolpackov1-1/+2
Every class gets a separate table. New test: common/inheritance.
2011-04-05Cosmetic changeBoris Kolpackov1-2/+0
2011-03-25Query supportBoris Kolpackov1-0/+120