aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-12-12Bump version to 2.2.0.a22.2.0.a2Boris Kolpackov2-4/+4
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov4-17/+69
2012-11-29Namespace management for static multi-database supportBoris Kolpackov5-5/+33
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 Kolpackov9-47/+328
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 Kolpackov2-4/+4
2012-10-15Implement early connection releaseBoris Kolpackov13-33/+107
2012-10-12Completion of prepared query supportBoris Kolpackov13-39/+191
2012-10-08Ground work for multi-database supportBoris Kolpackov23-257/+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-05Bump version to 2.1.12.1.12.1Boris Kolpackov2-3/+3
2012-10-05Fix bug in short national char data queryingBoris Kolpackov1-2/+2
2012-09-17Fix incorrect license information2.1.0Boris Kolpackov1-1/+1
2012-09-16Add support for Visual Studio 2012Boris Kolpackov5-2/+229
2012-09-14Indicate value cannot be NULL when initializing query parameter imageBoris Kolpackov1-44/+44
2012-09-14Bump version to 2.1.0Boris Kolpackov2-4/+4
2012-09-11Add support for mapping std::array to BLOB and char[16] to UUID typesBoris Kolpackov2-32/+268
2012-08-15Fix typo in commentBoris Kolpackov1-1/+1
2012-07-27Bump version to 2.1.0.a22.1.0.a2Boris Kolpackov2-4/+4
2012-07-25Cosmetic changesBoris Kolpackov1-1/+1
2012-07-17Get rid of warning2.1.0.a1Boris Kolpackov1-1/+1
2012-07-17Bump version to 2.1.0.a1Boris Kolpackov2-4/+4
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-43/+138
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-06-18Bump version to 2.0.12.0.1Boris Kolpackov2-3/+3
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-05-04Add -D_REENTRANT when building on Linux to emulate -pthreadBoris Kolpackov1-1/+3
2012-04-29Bump version to 2.0.02.0.0Boris Kolpackov2-4/+4
2012-04-29Make transaction_impl sanity check optional, use assertBoris Kolpackov1-1/+3
2012-04-26Replace remaining std::auto_ptr uses with odb::details::unique_ptrBoris Kolpackov1-5/+2
GCC in C++11 mode issues a deprecation warning for std::auto_ptr.
2012-04-26Make session optionalBoris Kolpackov3-10/+8
2012-04-23Polymorphic inheritance supportBoris Kolpackov23-563/+1600
2012-03-07Use RAII to free select statement resultsBoris Kolpackov5-36/+73
2012-03-02Bump version to 1.9.0.a1Boris Kolpackov2-4/+4
2012-03-02Reimplement C++11 support to be header-onlyBoris Kolpackov2-7/+3
This way, the same build of the runtime libraries can be used in both C++98 and C++11 modes. This is important for when runtimes are installed or packaged.
2012-03-01Add support for using C++11 std::unique_ptr to pass connection factoryBoris Kolpackov2-21/+29
2012-02-22Add support for composite object idsBoris Kolpackov3-4/+4
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.
2012-01-30Suppress warning1.8.0Boris Kolpackov1-1/+1
2012-01-29Bump version to 1.8.0Boris Kolpackov2-4/+4
2012-01-29Fix incorrect copyright holderBoris Kolpackov3-3/+3
2012-01-29Update copyright yearBoris Kolpackov87-87/+87
2012-01-29Remove author field from file headerBoris Kolpackov86-87/+1
Too much effort to maintain.
2012-01-26Implement support for database schemaBoris Kolpackov1-4/+2
New pragma qualifier: namespace. New pragma specifier: schema. The table specifier was extended to accept a schema prefix. New option: --default- schema. The common/schema test was extended to cover the new functionality.
2012-01-20Work around SQL Server 2005 bug with long data and OUTPUT clauseBoris Kolpackov2-1/+27
2012-01-20Cosmetic changesBoris Kolpackov1-5/+4
2012-01-20Rename long_buffer to long_data_bufferBoris Kolpackov3-7/+7
2012-01-18Add installation instructionsBoris Kolpackov1-1/+99
2012-01-17Autotools and VC++ build supportBoris Kolpackov18-0/+1302
2012-01-17Free direct statement before disconnectingBoris Kolpackov2-2/+2
2012-01-17Cosmetic changesBoris Kolpackov1-1/+0
2012-01-17Use ANSI versions of ODBC functions, get rid of warningsBoris Kolpackov4-56/+56
We have to use ANSI versions explicitly because VC++ build defaults to Unicode.