Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-08-14 | Get rid of warning | Boris Kolpackov | 1 | -20/+19 | |
2013-07-08 | Fix incorrect ODB_MSC_VER version in VC11 projects | Boris Kolpackov | 1 | -1/+1 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 48 | -92/+556 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 63 | -877/+797 | |
Only possible in the development build system at this stage. | |||||
2013-06-13 | Handle --database option directly in automake and VC++ projects | Boris Kolpackov | 51 | -132/+166 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 47 | -47/+47 | |
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing. | |||||
2013-04-26 | Add support for extra database info in primary key | Boris Kolpackov | 18 | -18/+18 | |
Use that to handle Oracle sequence name and SQLite lax auto ids. | |||||
2013-04-26 | Add support for table options in changelog, use to handle MySQL engine | Boris Kolpackov | 19 | -31/+31 | |
2013-04-26 | Use open, closed names in version pragma | Boris Kolpackov | 10 | -10/+10 | |
2013-04-26 | Add database name to changelog | Boris Kolpackov | 95 | -95/+95 | |
2013-04-10 | Generate add/drop foreign key migration statements | Boris Kolpackov | 36 | -36/+36 | |
Also add the --fkeys-deferrable-mode option. General schemas generation rework. | |||||
2013-04-10 | Generate add/drop table migration statements | Boris Kolpackov | 2 | -3/+4 | |
2013-04-10 | Add changelog support for add/drop index/foreign key | Boris Kolpackov | 46 | -7/+971 | |
Also diagnose changes to primary keys and establish the 'alters' association. | |||||
2013-04-10 | Add changelog support for add, drop, and later column | Boris Kolpackov | 34 | -1/+481 | |
2013-04-10 | Add changelog test | Boris Kolpackov | 40 | -1/+1233 | |
2013-04-01 | Handle inverse member in base class of polymorphic hierarchy | Boris Kolpackov | 3 | -1/+183 | |
2013-02-21 | Add support for pattern matching (SQL LIKE) | Boris Kolpackov | 2 | -0/+42 | |
2013-02-12 | Don't use uninitialized iterator on the rhs of assignment2.2.0 | Boris Kolpackov | 1 | -0/+11 | |
2013-02-12 | Disable non-const to const iterator comparison test for Sun CC's STLPort | Boris Kolpackov | 1 | -1/+4 | |
2013-02-12 | Use consistent types in object and view | Boris Kolpackov | 1 | -1/+1 | |
2013-02-12 | Workarounds for non-standard Sun CC STL | Boris Kolpackov | 1 | -2/+13 | |
2013-02-12 | Disable constraint checking in MySQL | Boris Kolpackov | 1 | -3/+9 | |
This test can either create tables or drop them in the "wrong" order, depending on the static initialization order. For MySQL we can create things but not drop (no IF EXISTS or similar support). | |||||
2013-02-11 | Add extra source to dist | Boris Kolpackov | 1 | -0/+1 | |
2013-02-11 | Account for C++11 compilers without default function template arguments | Boris Kolpackov | 1 | -0/+9 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 170 | -170/+170 | |
2013-02-09 | Shorten table prefix for Oracle | Boris Kolpackov | 3 | -3/+3 | |
2013-02-08 | Add schema_catalog::exists() function | Boris Kolpackov | 6 | -1/+201 | |
2013-02-08 | Add callback_ prefix to transaction callback functions | Boris Kolpackov | 3 | -10/+30 | |
Also test callback_update(). | |||||
2013-02-08 | Test change-tracking container and reuse inheritance | Boris Kolpackov | 2 | -3/+63 | |
2013-02-08 | Misc fixes | Boris Kolpackov | 2 | -6/+6 | |
2013-02-07 | Use multi-pass table creation in MySQL | Boris Kolpackov | 10 | -11/+233 | |
This deals with table creation order and circular dependencies. Unfortunately, there doesn't seem to be a way in MySQL to drop a foreign key only if it exists without resorting to stored procedures. | |||||
2013-02-06 | Fix incorrect dist variable | Boris Kolpackov | 1 | -1/+1 | |
2013-02-05 | Add support for change-tracking containers | Boris Kolpackov | 9 | -52/+943 | |
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking. | |||||
2013-01-25 | By default map std::array<char, N> to string instead of binary | Boris Kolpackov | 1 | -7/+2 | |
2013-01-24 | Add support for mapping char[N] to CHAR/VARCHAR database types | Boris Kolpackov | 9 | -11/+375 | |
Also improve query support for arrays (decaying). | |||||
2013-01-20 | Add cache_ suffix to session cache functions | Boris Kolpackov | 2 | -24/+26 | |
This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names. | |||||
2013-01-20 | Add extra headers to dist target variables | Boris Kolpackov | 1 | -1/+2 | |
2013-01-18 | Add support for post-commit/rollback callbacks | Boris Kolpackov | 11 | -108/+513 | |
New test: common/transaction/callback. | |||||
2013-01-16 | Make session cache management functions static, add notifications | Boris Kolpackov | 4 | -68/+131 | |
2013-01-16 | Implement two-phase session insertion | Boris Kolpackov | 9 | -3/+724 | |
On the first step an uninitialized object is inserted into the cache as before (this is necessary to handle recursive loading). The second step is to notify the session that the object has been initialized. On this second step the session can perform change tracking preparations, such as make a copy of the object or reset the modification flag. New test: common/session/custom (implements a custom session that uses copies to track changes). | |||||
2013-01-16 | Rename common/session to common/session/cache | Boris Kolpackov | 5 | -11/+11 | |
2013-01-14 | Fix bug in handling polymorphic derived classes without any value members | Boris Kolpackov | 3 | -1/+98 | |
2012-12-12 | Don't use 0 to initialize std::function2.2.0.a2 | Boris Kolpackov | 1 | -3/+5 | |
This doesn't work on VC++ 11. | |||||
2012-12-12 | Add support for SQL name transformations | Boris Kolpackov | 1 | -9/+9 | |
2012-11-21 | Add dynamic multi-database query support | Boris Kolpackov | 1 | -3/+3 | |
2012-10-29 | Add workaround for VC++2.2.0.a1 | Boris Kolpackov | 1 | -7/+9 | |
2012-10-29 | Fix incorrect relative paths | Boris Kolpackov | 3 | -12/+12 | |
2012-10-19 | Remove unnecessary code | Boris Kolpackov | 1 | -1/+0 | |
2012-10-19 | Implement early connection release | Boris Kolpackov | 2 | -69/+77 | |
2012-10-19 | Add another case to prepared query test | Boris Kolpackov | 1 | -1/+33 | |