aboutsummaryrefslogtreecommitdiff
path: root/odb
AgeCommit message (Collapse)AuthorFilesLines
2013-10-19Fix incorrect license in file headers2.3.02.3Boris Kolpackov3-3/+3
2013-10-19Bump version to 2.3.0Boris Kolpackov1-3/+3
2013-10-09Bump version to 2.3.0.b22.3.0.b2Boris Kolpackov1-3/+3
2013-09-28Make schema version access (but not modification) thread-safeBoris Kolpackov3-5/+33
Also cache the version in statements so that we don't have to lock the mutex (slow) every time we need to check the version.
2013-09-17Bump version to 2.3.0.b12.3.0.b1Boris Kolpackov1-3/+3
2013-09-10Schema versioning supportBoris Kolpackov24-115/+599
2013-08-14Add support for object sectionsBoris Kolpackov8-57/+339
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-07-08Add support for Visual Studio 2005Boris Kolpackov2-1/+356
2013-04-25Add support for schema version tableBoris Kolpackov2-1/+107
2013-04-25Add default constructor, finalized() accessor to transactionBoris Kolpackov2-3/+11
2013-02-21Add support for pattern matching (SQL LIKE)Boris Kolpackov3-0/+108
2013-02-13Suppress warning in empty for-loop2.2.0Boris Kolpackov1-1/+1
2013-02-12Qualify vector to work around Sun CC bugsBoris Kolpackov1-0/+4
2013-02-11Support compilers that deduce const arrays to const reference differentlyBoris Kolpackov1-0/+35
2013-02-09Bump version to 2.2.0Boris Kolpackov1-3/+3
2013-02-09Update copyright yearBoris Kolpackov80-80/+80
2013-02-05Add support for change-tracking containersBoris Kolpackov5-134/+241
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-25By default map std::array<char, N> to string instead of binaryBoris Kolpackov1-6/+8
2013-01-24Add support for mapping char[N] to CHAR/VARCHAR database typesBoris Kolpackov4-233/+473
Also improve query support for arrays (decaying).
2013-01-17Add database id constant (useful for meta-programming)Boris Kolpackov1-0/+5
2013-01-16Make session cache management functions static, add notificationsBoris Kolpackov2-2/+2
2013-01-16Implement two-phase session insertionBoris Kolpackov2-7/+5
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-15Bump version to 2.2.0.a3Boris Kolpackov1-3/+3
2013-01-15Check that max connections is greater or equal than min in connection poolBoris Kolpackov1-1/+4
2012-12-12Bump version to 2.2.0.a22.2.0.a2Boris Kolpackov1-3/+3
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov4-17/+69
2012-11-29Namespace management for static multi-database supportBoris Kolpackov5-3/+31
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-21Add dynamic multi-database query supportBoris Kolpackov11-66/+413
2012-10-29Don't use boolean as identifier2.2.0.a1Boris Kolpackov2-19/+20
Some headers/systems defined it as a macro.
2012-10-29Bump version to 2.2.0.a1Boris Kolpackov1-3/+3
2012-10-15Implement early connection releaseBoris Kolpackov13-27/+113
2012-10-12Completion of prepared query supportBoris Kolpackov13-43/+207
2012-10-08Ground work for multi-database supportBoris Kolpackov23-261/+894
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-10-08Fix issue with unbind data management in query with descriptorsBoris Kolpackov2-19/+17
2012-09-17Fix incorrect license information2.1.0Boris Kolpackov1-1/+1
2012-09-16Add support for Visual Studio 2012Boris Kolpackov3-1/+201
2012-09-14Indicate value cannot be NULL when initializing query parameter imageBoris Kolpackov1-26/+26
2012-09-14Bump version to 2.1.0Boris Kolpackov1-3/+3
2012-09-11Add support for mapping std::array to BLOB and char[16] to UUID typesBoris Kolpackov2-25/+295
2012-09-06Remove default value from argument to make database constructors unambiguousBoris Kolpackov1-1/+1
2012-07-27Bump version to 2.1.0.a22.1.0.a2Boris Kolpackov1-3/+3
2012-07-27Handle special case of array of zero elementsBoris Kolpackov1-1/+2
2012-07-25Simplify auto id implementation in OracleBoris Kolpackov1-6/+8
Specifically, instead of using a trigger to assign the next id from the sequence, get the next value directly in the INSERT statement.
2012-07-17Get rid of warning2.1.0.a1Boris Kolpackov1-1/+1
2012-07-17Bump version to 2.1.0.a1Boris Kolpackov1-3/+3
2012-07-16Simplify query inheritance hierarchyBoris Kolpackov1-8/+9
This should also allow Sun CC handle queries for objects with circular dependencies.
2012-07-10Add support for custom database type mappingBoris Kolpackov5-48/+146
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-06-18Bump version to 2.0.12.0.1Boris Kolpackov1-2/+2
2012-06-18Allocate container traits lazily and only when their definition is seenBoris Kolpackov4-6/+58
This fixes a problem with polymorphic hierarchies spread over multiple files in which case the source code for the derived class does not have the definition of the container traits for the base class. See the comment in the source code for further details.
2012-04-29Bump version to 2.0.02.0.0Boris Kolpackov1-3/+3