Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-12-03 | Add support for executing common query using static interface | Boris Kolpackov | 4 | -17/+69 | |
2012-11-29 | Namespace management for static multi-database support | Boris Kolpackov | 5 | -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-21 | Add dynamic multi-database query support | Boris Kolpackov | 9 | -47/+328 | |
2012-10-29 | Don't use boolean as identifier2.2.0.a1 | Boris Kolpackov | 2 | -19/+20 | |
Some headers/systems defined it as a macro. | |||||
2012-10-29 | Bump version to 2.2.0.a1 | Boris Kolpackov | 2 | -4/+4 | |
2012-10-15 | Implement early connection release | Boris Kolpackov | 13 | -33/+107 | |
2012-10-12 | Completion of prepared query support | Boris Kolpackov | 13 | -39/+191 | |
2012-10-08 | Ground work for multi-database support | Boris Kolpackov | 23 | -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-05 | Bump version to 2.1.12.1.12.1 | Boris Kolpackov | 2 | -3/+3 | |
2012-10-05 | Fix bug in short national char data querying | Boris Kolpackov | 1 | -2/+2 | |
2012-09-17 | Fix incorrect license information2.1.0 | Boris Kolpackov | 1 | -1/+1 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 5 | -2/+229 | |
2012-09-14 | Indicate value cannot be NULL when initializing query parameter image | Boris Kolpackov | 1 | -44/+44 | |
2012-09-14 | Bump version to 2.1.0 | Boris Kolpackov | 2 | -4/+4 | |
2012-09-11 | Add support for mapping std::array to BLOB and char[16] to UUID types | Boris Kolpackov | 2 | -32/+268 | |
2012-08-15 | Fix typo in comment | Boris Kolpackov | 1 | -1/+1 | |
2012-07-27 | Bump version to 2.1.0.a22.1.0.a2 | Boris Kolpackov | 2 | -4/+4 | |
2012-07-25 | Cosmetic changes | Boris Kolpackov | 1 | -1/+1 | |
2012-07-17 | Get rid of warning2.1.0.a1 | Boris Kolpackov | 1 | -1/+1 | |
2012-07-17 | Bump version to 2.1.0.a1 | Boris Kolpackov | 2 | -4/+4 | |
2012-07-16 | Simplify query inheritance hierarchy | Boris Kolpackov | 1 | -8/+9 | |
This should also allow Sun CC handle queries for objects with circular dependencies. | |||||
2012-07-10 | Add support for custom database type mapping | Boris Kolpackov | 5 | -43/+138 | |
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom. | |||||
2012-06-18 | Bump version to 2.0.12.0.1 | Boris Kolpackov | 2 | -3/+3 | |
2012-06-18 | Allocate container traits lazily and only when their definition is seen | Boris Kolpackov | 4 | -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-04 | Add -D_REENTRANT when building on Linux to emulate -pthread | Boris Kolpackov | 1 | -1/+3 | |
2012-04-29 | Bump version to 2.0.02.0.0 | Boris Kolpackov | 2 | -4/+4 | |
2012-04-29 | Make transaction_impl sanity check optional, use assert | Boris Kolpackov | 1 | -1/+3 | |
2012-04-26 | Replace remaining std::auto_ptr uses with odb::details::unique_ptr | Boris Kolpackov | 1 | -5/+2 | |
GCC in C++11 mode issues a deprecation warning for std::auto_ptr. | |||||
2012-04-26 | Make session optional | Boris Kolpackov | 3 | -10/+8 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 23 | -563/+1600 | |
2012-03-07 | Use RAII to free select statement results | Boris Kolpackov | 5 | -36/+73 | |
2012-03-02 | Bump version to 1.9.0.a1 | Boris Kolpackov | 2 | -4/+4 | |
2012-03-02 | Reimplement C++11 support to be header-only | Boris Kolpackov | 2 | -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-01 | Add support for using C++11 std::unique_ptr to pass connection factory | Boris Kolpackov | 2 | -21/+29 | |
2012-02-22 | Add support for composite object ids | Boris Kolpackov | 3 | -4/+4 | |
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated. | |||||
2012-01-30 | Suppress warning1.8.0 | Boris Kolpackov | 1 | -1/+1 | |
2012-01-29 | Bump version to 1.8.0 | Boris Kolpackov | 2 | -4/+4 | |
2012-01-29 | Fix incorrect copyright holder | Boris Kolpackov | 3 | -3/+3 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 87 | -87/+87 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 86 | -87/+1 | |
Too much effort to maintain. | |||||
2012-01-26 | Implement support for database schema | Boris Kolpackov | 1 | -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-20 | Work around SQL Server 2005 bug with long data and OUTPUT clause | Boris Kolpackov | 2 | -1/+27 | |
2012-01-20 | Cosmetic changes | Boris Kolpackov | 1 | -5/+4 | |
2012-01-20 | Rename long_buffer to long_data_buffer | Boris Kolpackov | 3 | -7/+7 | |
2012-01-18 | Add installation instructions | Boris Kolpackov | 1 | -1/+99 | |
2012-01-17 | Autotools and VC++ build support | Boris Kolpackov | 18 | -0/+1302 | |
2012-01-17 | Free direct statement before disconnecting | Boris Kolpackov | 2 | -2/+2 | |
2012-01-17 | Cosmetic changes | Boris Kolpackov | 1 | -1/+0 | |
2012-01-17 | Use ANSI versions of ODBC functions, get rid of warnings | Boris Kolpackov | 4 | -56/+56 | |
We have to use ANSI versions explicitly because VC++ build defaults to Unicode. | |||||
2012-01-14 | Update license | Boris Kolpackov | 16 | -16/+16 | |