Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-05-24 | Update copyright year | Karen Arutyunov | 3 | -3/+3 | |
2017-01-03 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2015-02-07 | Fix to use traditional const style | Boris Kolpackov | 1 | -2/+2 | |
2015-02-06 | Update copyright | Boris Kolpackov | 3 | -3/+3 | |
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 1 | -1/+4 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 1 | -2/+4 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 2 | -17/+13 | |
Only possible in the development build system at this stage. | |||||
2013-06-13 | Handle --database option directly in automake and VC++ projects | Boris Kolpackov | 1 | -3/+4 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 1 | -1/+1 | |
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing. | |||||
2013-02-09 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 1 | -1/+3 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 1 | -14/+14 | |
2012-02-24 | C++11 support (pass --std ODB compiler option in build makefiles) | Boris Kolpackov | 1 | -0/+5 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 3 | -3/+0 | |
Too much effort to maintain. | |||||
2011-10-27 | Revert to manually quoting Oracle identifiers where necessary | Constantin Michael | 1 | -7/+1 | |
2011-10-26 | Quote schema object identifiers for Oracle where necessary | Constantin Michael | 1 | -0/+7 | |
Oracle converts all alphabetical characters in unquoted schema object identifiers to uppercase. This behaviour cannot be disabled. | |||||
2011-10-21 | Remove common_ from all table_prefix arguments in common tests | Constantin Michael | 2 | -2/+2 | |
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 2 | -2/+3 | |
2011-08-19 | Rework query machinery not to use '_' as primary table alias | Boris Kolpackov | 1 | -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-18 | Fix custom recursive loading in post_load callback | Boris Kolpackov | 3 | -6/+50 | |
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-18 | Qualify id with table alias to help SQLite out | Boris Kolpackov | 1 | -1/+1 | |
This hack should go away once we have language-integrated support for ORDER BY. | |||||
2011-07-11 | Order results by id to get consistent test output order | Boris Kolpackov | 1 | -1/+1 | |
2011-07-05 | Fix memory leak | Boris Kolpackov | 1 | -0/+2 | |
2011-07-04 | Implement support for database operations callbacks | Boris Kolpackov | 4 | -0/+353 | |
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback". |