Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |
2012-09-14 | Bump version to 2.1.0 | Boris Kolpackov | 2 | -5/+5 | |
2012-07-27 | Bump version to 2.1.0.a22.1.0.a2 | Boris Kolpackov | 2 | -5/+5 | |
2012-07-17 | Bump version to 2.1.0.a12.1.0.a1 | Boris Kolpackov | 2 | -5/+5 | |
2012-07-16 | Simplify query inheritance hierarchy | Boris Kolpackov | 1 | -2/+2 | |
This should also allow Sun CC handle queries for objects with circular dependencies. | |||||
2012-07-03 | Add template qualifiers that are missing according to Clang 3.1 | Boris Kolpackov | 6 | -18/+32 | |
2012-06-18 | Add argument to session ctor that indicates whether to make it current | Boris Kolpackov | 2 | -8/+11 | |
2012-06-18 | Remove unnecessary checks for current transaction | Boris Kolpackov | 2 | -5/+3 | |
2012-06-18 | Bump version to 2.0.12.0.1 | Boris Kolpackov | 2 | -3/+3 | |
2012-06-18 | Add workaround for VC++ lookup bug | Boris Kolpackov | 1 | -1/+1 | |
2012-05-04 | Add -D_REENTRANT when building on Linux to emulate -pthread | Boris Kolpackov | 1 | -1/+3 | |
2012-04-30 | Add empty source file to facilitate VC++ symbol exporting2.0.0 | Boris Kolpackov | 2 | -0/+12 | |
2012-04-30 | VC++ workarounds | Boris Kolpackov | 2 | -3/+9 | |
2012-04-29 | Bump version to 2.0.0 | Boris Kolpackov | 2 | -5/+5 | |
2012-04-29 | Rework unique pointer conversion (Clang warning) | Boris Kolpackov | 1 | -21/+19 | |
2012-04-29 | Add missing #include | Boris Kolpackov | 1 | -0/+2 | |