Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-02-21 | Handle operations other than 'eq' and 'and' in dynamic queries | Boris Kolpackov | 1 | -2/+19 | |
2013-02-14 | Bump version to 2.2.12.2.1 | Boris Kolpackov | 2 | -3/+3 | |
2013-02-14 | Make sure windows.hxx is always installed on Windows | Boris Kolpackov | 8 | -21/+42 | |
2013-02-12 | Don't use uninitialized iterator on the rhs of assignment2.2.0 | Boris Kolpackov | 1 | -0/+11 | |
2013-02-12 | Factor windows.h inclusion into separate header, disable min/max macros | Boris Kolpackov | 12 | -74/+45 | |
2013-02-12 | Workarounds for non-standard Sun CC STL | Boris Kolpackov | 4 | -163/+210 | |
2013-02-11 | Remove stray references | Boris Kolpackov | 1 | -4/+4 | |
2013-02-11 | Support compilers that deduce const arrays to const reference differently | Boris Kolpackov | 1 | -0/+15 | |
2013-02-11 | Detect POSIX threads on MinGW-W64 | Boris Kolpackov | 1 | -1/+10 | |
2013-02-09 | Remove unnecessary local typedef (GCC 4.8 warning) | Boris Kolpackov | 1 | -2/+0 | |
2013-02-09 | Bump version to 2.2.0 | Boris Kolpackov | 2 | -5/+5 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 184 | -184/+184 | |
2013-02-09 | Escape m4 macro | Boris Kolpackov | 1 | -1/+1 | |
2013-02-08 | Add schema_catalog::exists() function | Boris Kolpackov | 2 | -0/+16 | |
2013-02-08 | Add callback_ prefix to transaction callback functions | Boris Kolpackov | 5 | -35/+43 | |
Also test callback_update(). | |||||
2013-02-08 | Remove stray text | Boris Kolpackov | 1 | -1/+1 | |
2013-02-06 | Add call to AM_PROG_AR which is required by newer automake | Boris Kolpackov | 1 | -0/+1 | |
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch. | |||||
2013-02-06 | Fix incorrect AC_LANG_SOURCE quoting | Boris Kolpackov | 2 | -6/+6 | |
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch. | |||||
2013-02-05 | Add support for change-tracking containers | Boris Kolpackov | 19 | -136/+1909 | |
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-02-05 | Add support for updating callback registration | Boris Kolpackov | 2 | -40/+74 | |
2013-01-24 | Add support for mapping char[N] to CHAR/VARCHAR database types | Boris Kolpackov | 2 | -10/+66 | |
Also improve query support for arrays (decaying). | |||||
2013-01-20 | Add cache_ suffix to session cache functions | Boris Kolpackov | 4 | -65/+127 | |
This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names. | |||||
2013-01-18 | Add support for post-commit/rollback callbacks | Boris Kolpackov | 3 | -1/+273 | |
New test: common/transaction/callback. | |||||
2013-01-17 | Cosmetic change | Boris Kolpackov | 1 | -1/+1 | |
2013-01-16 | Make session cache management functions static, add notifications | Boris Kolpackov | 9 | -89/+138 | |
2013-01-16 | Implement two-phase session insertion | Boris Kolpackov | 6 | -8/+48 | |
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 | Add support for using custom session implementations | Boris Kolpackov | 4 | -26/+26 | |
New option, --session-type. | |||||
2013-01-16 | Add support for low-level access to object cache | Boris Kolpackov | 1 | -8/+16 | |
2013-01-16 | Cleanup object cache position type | Boris Kolpackov | 4 | -16/+30 | |
2013-01-15 | Bump version to 2.2.0.a3 | Boris Kolpackov | 2 | -5/+5 | |
2013-01-09 | Work around "changes meaning" error in older GCC | Boris Kolpackov | 1 | -4/+4 | |
2012-12-12 | Bump version to 2.2.0.a22.2.0.a2 | Boris Kolpackov | 2 | -5/+5 | |
2012-12-12 | Don't use 0 to initialize std::function | Boris Kolpackov | 1 | -1/+3 | |
This doesn't work on VC++ 11. | |||||
2012-12-10 | Fix incorrect return statement | Boris Kolpackov | 2 | -4/+4 | |
2012-11-29 | Namespace management for static multi-database support | Boris Kolpackov | 9 | -14/+36 | |
Now in libodb the odb::core namespace is split into odb::common (database- independent stuff) and odb::core proper, which imports odb::common. Each database runtime now defines odb::<db>::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::<db>::core just like for odb::core. | |||||
2012-11-28 | Add support for DLL exporting of generated code | Boris Kolpackov | 1 | -10/+1 | |
New options: --export-symbol, --extern-symbol. | |||||
2012-11-21 | Add dynamic multi-database query support | Boris Kolpackov | 12 | -35/+1328 | |
2012-11-02 | Rework query alias tag system | Boris Kolpackov | 1 | -5/+4 | |
Now each object pointer or view-associated object with alias gets its own unique tag. | |||||
2012-10-31 | Add dynamic multi-database support excluding query | Boris Kolpackov | 2 | -2/+37 | |
2012-10-29 | Add workaround for VC++2.2.0.a1 | Boris Kolpackov | 5 | -5/+6 | |
2012-10-29 | Bump version to 2.2.0.a1 | Boris Kolpackov | 2 | -5/+5 | |
2012-10-29 | Add static multi-database support for lazy pointers | Boris Kolpackov | 7 | -242/+334 | |
A lazy pointer must load the object using the static database interface with which it was initialized. | |||||
2012-10-25 | Static multi-database support | Boris Kolpackov | 1 | -1/+0 | |
Add new options (--multi-database, --default-database). Generate common code to -odb.?xx files and database-specific to -odb-<db>.?xx. | |||||
2012-10-19 | Implement early connection release | Boris Kolpackov | 16 | -94/+269 | |
2012-10-19 | Completion of prepared query support | Boris Kolpackov | 13 | -24/+574 | |
2012-10-19 | Update prepared statement code for multi-database support | Boris Kolpackov | 1 | -1/+2 | |
2012-10-19 | Initial support for prepared queries | Boris Kolpackov | 17 | -53/+162 | |
2012-10-08 | Ground work for multi-database support | Boris Kolpackov | 12 | -212/+398 | |
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface. | |||||
2012-09-17 | Remove unused local typedefs (GCC 4.8 warning)2.1.0 | Boris Kolpackov | 1 | -2/+0 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 5 | -2/+229 | |