Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-18 | Bump version to 2.0.12.0.1 | Boris Kolpackov | 2 | -3/+3 | |
2012-06-18 | Search for libmysqlclient in additional directories | Boris Kolpackov | 1 | -1/+23 | |
Fedora hides them in /usr/lib[64]/mysql for some reason. | |||||
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-06-15 | Add support for building against libmysqlclient that lacks THR_KEY_mysys | Boris Kolpackov | 5 | -13/+53 | |
In certain distributions (specifically Fedora 15 and later), maintainers limit the number of visible symbols. If THR_KEY_mysys is hidden, then we try to create the TLS keys in such an order that it results in the correct behavior. And then hope for the best. | |||||
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 | -2/+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 | 24 | -577/+1668 | |
2012-03-29 | Clear active connection in destructor | Boris Kolpackov | 1 | -0/+2 | |
2012-03-07 | Use RAII to free select statement results | Boris Kolpackov | 4 | -20/+57 | |
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 | -13/+8 | |
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-02 | Fix array subscript overflow | Boris Kolpackov | 1 | -1/+3 | |
2012-03-01 | Add support for using C++11 std::unique_ptr to pass connection factory | Boris Kolpackov | 2 | -26/+34 | |
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-02-10 | Don't allocate unnecessary entries in container truncation array | Boris Kolpackov | 2 | -14/+7 | |
2012-01-29 | Bump version to 1.8.01.8.0 | Boris Kolpackov | 2 | -4/+4 | |
2012-01-29 | Fix incorrect copyright holder | Boris Kolpackov | 8 | -8/+8 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 91 | -91/+91 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 90 | -91/+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-13 | Remove unneeded qualification | Boris Kolpackov | 1 | -1/+1 | |
2012-01-12 | Cosmetic changes | Boris Kolpackov | 1 | -1/+1 | |
2012-01-12 | Add missing #include | Boris Kolpackov | 1 | -0/+2 | |
2011-12-21 | Do not select object id in container SELECT statement | Boris Kolpackov | 2 | -14/+36 | |
2011-12-05 | Bump version to 1.7.01.7.0 | Boris Kolpackov | 2 | -4/+4 | |
2011-12-05 | Add link to licensing overview page | Boris Kolpackov | 1 | -0/+6 | |
2011-11-28 | Add missing version.hxx include; correct export macro | Boris Kolpackov | 1 | -1/+2 | |
2011-11-17 | Remove unnecessary forward declaration | Boris Kolpackov | 1 | -1/+0 | |
2011-11-17 | Remove unnecessary includes | Boris Kolpackov | 3 | -6/+0 | |
2011-11-16 | Fix misspelled file name | Boris Kolpackov | 2 | -5/+5 | |
2011-11-09 | Avoid copying statement text if it is statically allocated | Boris Kolpackov | 4 | -30/+156 | |
2011-11-07 | Add support for SQL statement tracing | Boris Kolpackov | 12 | -32/+300 | |
2011-11-03 | Add support for mapping char[N] and unsigned char[N] types to BLOB1.7.0.a1 | Boris Kolpackov | 2 | -2/+77 | |
New test: common/blob. | |||||
2011-11-03 | Add support for mapping std::vector<unsigned char> to BLOB types | Boris Kolpackov | 2 | -0/+56 | |
2011-11-02 | Bump version to 1.7.0.a1 | Boris Kolpackov | 2 | -4/+4 | |
2011-11-02 | Prevent potential image overwrite in MySQL query result | Boris Kolpackov | 4 | -8/+37 | |
2011-11-02 | Optimize load_id(), load() sequence for SQLite and PostgreSQL | Boris Kolpackov | 2 | -2/+2 | |
In these databases both of these functions load the data into the object image. If there is no chance of image overwrite between these calls, then we don't need to load the image the second time. | |||||
2011-11-01 | Implement support for optimistic concurrency | Boris Kolpackov | 4 | -17/+93 | |
New pragmas: optimistic, version. New test: optimistic. New database function: reload(). | |||||
2011-10-30 | Rework statement interfaces wrt param/result passing | Boris Kolpackov | 4 | -71/+67 | |
2011-10-27 | Make sure output directory exist before generating config.h | Boris Kolpackov | 1 | -1/+1 | |
2011-10-27 | Add support for persistent classes without object ids | Boris Kolpackov | 9 | -50/+388 | |
New pragma id (object). New test: common/no-id. | |||||
2011-10-21 | Add support for const data members | Boris Kolpackov | 1 | -2/+2 | |
Const data members are automatically treated as readonly. New test: const-member. | |||||
2011-10-21 | Split 'in' binding into insert/update pair; rename 'out' to select | Boris Kolpackov | 4 | -96/+116 | |
Also add the initial infrastructure for the readonly members support. Right now the split insert/update bindings allows us to avoid sending object id in UPDATE statements. It will also allows us to support readonly members. | |||||
2011-10-19 | Mention autotools as prerequisite in INSTALL-GIT | Boris Kolpackov | 1 | -1/+6 | |
2011-10-03 | Work around bug in Sun CC1.6.01.6 | Boris Kolpackov | 3 | -2/+17 | |
2011-10-03 | Export query operators that were made non-inline | Boris Kolpackov | 1 | -3/+3 | |
2011-10-03 | Bump version to 1.6.0 | Boris Kolpackov | 2 | -4/+4 | |