Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-23 | Fix typo in comment | Boris Kolpackov | 1 | -1/+1 | |
2014-06-15 | Use single template set of templates for .sln files | Boris Kolpackov | 5 | -77/+0 | |
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 54 | -51/+442 | |
2013-12-12 | Fix invalid paths in makefiles | Boris Kolpackov | 3 | -15/+15 | |
2013-12-04 | Implement on_delete pragma for object pointers | Boris Kolpackov | 13 | -12/+270 | |
Translates to the ON DELETE SQL clause. | |||||
2013-10-24 | Don't use auto id for BLOB test | Boris Kolpackov | 2 | -4/+4 | |
This causes problems with SQL Server 2005. | |||||
2013-10-15 | Remove unused typedef | Boris Kolpackov | 1 | -2/+0 | |
2013-10-15 | Automatically map C++11 enum classes (strong enums) | Boris Kolpackov | 2 | -3/+45 | |
2013-09-28 | Don't ignore empty changesets | Boris Kolpackov | 45 | -0/+90 | |
This can be useful, for example, in data-only migrations. | |||||
2013-09-17 | Add support for defining composite values inside persistent classes, etc | Boris Kolpackov | 4 | -0/+149 | |
2013-09-17 | Diagnose change of polymorphic base, table kind | Boris Kolpackov | 96 | -137/+137 | |
2013-09-17 | Cleanup polymorphic base tables when dropping derived one | Boris Kolpackov | 20 | -20/+20 | |
2013-09-17 | Provide quoted versions of view statement | Boris Kolpackov | 1 | -6/+14 | |
2013-09-17 | Versioned section support | Boris Kolpackov | 1 | -10/+0 | |
2013-09-17 | Handling of dynamic empty statements as result of versioning | Boris Kolpackov | 2 | -2/+17 | |
2013-09-17 | Fix UPDATE statement for smart containers with read-only value members | Boris Kolpackov | 2 | -0/+61 | |
Here we have to include them (think what happens when we erase an element somewhere in the middle of a container). | |||||
2013-09-17 | Add support for statement processing | Boris Kolpackov | 4 | -0/+699 | |
2013-08-14 | Add support for object sections | Boris Kolpackov | 9 | -0/+4779 | |
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated. | |||||
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 | |