Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-12-03 | Add support for executing common query using static interface | Boris Kolpackov | 1 | -1/+5 | |
2012-11-29 | Namespace management for static multi-database support | Boris Kolpackov | 1 | -1/+0 | |
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-10-19 | Implement early connection release | Boris Kolpackov | 1 | -2/+5 | |
2012-10-19 | Completion of prepared query support | Boris Kolpackov | 1 | -0/+18 | |
2012-04-26 | Replace remaining std::auto_ptr uses with odb::details::unique_ptr | Boris Kolpackov | 1 | -3/+3 | |
GCC in C++11 mode issues a deprecation warning for std::auto_ptr. | |||||
2012-01-29 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 1 | -1/+0 | |
Too much effort to maintain. | |||||
2011-11-17 | Remove unnecessary forward declaration | Boris Kolpackov | 1 | -1/+0 | |
2011-11-07 | Add support for SQL statement tracing | Boris Kolpackov | 1 | -0/+20 | |
2011-08-30 | Add comment with some explanations | Boris Kolpackov | 1 | -0/+4 | |
2011-08-30 | Implement uniform handle management across all databases | Boris Kolpackov | 1 | -3/+8 | |
Also use the auto_handle template instead of the raw handle in connection, statement, and result classes. This removes a lot of brittle "exception safety guarantee" code that we had in those classes. | |||||
2011-08-28 | Add support for creating connection from existing handle | Boris Kolpackov | 1 | -0/+5 | |
This will allow for custom connection establishment and configuration. | |||||
2011-08-21 | Add odb::connection class | Boris Kolpackov | 1 | -1/+22 | |
This abstract class represents a connection to the database. One can use it to start a transaction or to execute a native statement out of a transaction. Before we had concrete connection classes in the database runtime libraries (e.g., odb::mysql::connection). Now these classes derive from odb::connection. | |||||
2011-03-29 | Support for shared cache and unlock notification | Boris Kolpackov | 1 | -3/+21 | |
2011-03-24 | Add support for clearing connection from active and uncached statements | Boris Kolpackov | 1 | -0/+14 | |
2011-03-21 | Add base SQLite database classes | Boris Kolpackov | 1 | -0/+73 | |