aboutsummaryrefslogtreecommitdiff
path: root/common/callback/driver.cxx
AgeCommit message (Collapse)AuthorFilesLines
2015-02-07Fix to use traditional const styleBoris Kolpackov1-2/+2
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov1-1/+0
Only possible in the development build system at this stage.
2013-02-09Update copyright yearBoris 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-10-27Revert to manually quoting Oracle identifiers where necessaryConstantin Michael1-7/+1
2011-10-26Quote schema object identifiers for Oracle where necessaryConstantin Michael1-0/+7
Oracle converts all alphabetical characters in unquoted schema object identifiers to uppercase. This behaviour cannot be disabled.
2011-10-21Remove common_ from all table_prefix arguments in common testsConstantin Michael1-1/+1
2011-08-24Make tests use unique table prefixesBoris Kolpackov1-1/+2
2011-08-19Rework query machinery not to use '_' as primary table aliasBoris Kolpackov1-1/+1
Now we always qualify with the actual table name and use the '_' alias for situations where an object is referencing itself.
2011-08-18Fix custom recursive loading in post_load callbackBoris Kolpackov1-4/+25
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-18Qualify id with table alias to help SQLite outBoris Kolpackov1-1/+1
This hack should go away once we have language-integrated support for ORDER BY.
2011-07-11Order results by id to get consistent test output orderBoris Kolpackov1-1/+1
2011-07-05Fix memory leakBoris Kolpackov1-0/+2
2011-07-04Implement support for database operations callbacksBoris Kolpackov1-0/+160
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback".