Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-11-28 | Fix typo | Boris Kolpackov | 1 | -1/+1 | |
2014-11-25 | Implement bulk database operation support for Oracle and SQL Server | Boris Kolpackov | 1 | -12/+275 | |
2013-08-14 | Add support for object sections | Boris Kolpackov | 1 | -0/+17 | |
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-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 1 | -19/+19 | |
2013-04-09 | Add support for embedded schema migration | Boris Kolpackov | 1 | -1/+21 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-11-29 | Namespace management for static multi-database support | Boris Kolpackov | 1 | -1/+2 | |
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 | Completion of prepared query support | Boris Kolpackov | 1 | -0/+40 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 1 | -0/+17 | |
2012-03-06 | Detect situations where session is required but not used | Boris Kolpackov | 1 | -0/+7 | |
Throw session_required. | |||||
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-01 | Implement support for optimistic concurrency | Boris Kolpackov | 1 | -0/+7 | |
New pragmas: optimistic, version. New test: optimistic. New database function: reload(). | |||||
2011-09-21 | Rework const object handling | Boris Kolpackov | 1 | -7/+0 | |
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const. | |||||
2011-03-01 | Add support for embedded database schemas | Boris Kolpackov | 1 | -0/+25 | |
New options: --schema-format, --default-schema. New example: schema/embedded. | |||||
2011-02-21 | Add recoverable, connection_lost, and timeout exceptions | Boris Kolpackov | 1 | -1/+20 | |
The deadlock exception now inherits from recoverable. New manual section: 3.5, "Error Handling and Recovery". | |||||
2011-02-21 | Get rid of unnecessary qualification | Boris Kolpackov | 1 | -12/+12 | |
2011-02-18 | Add odb::core namespace to be used in using-directives | Boris Kolpackov | 1 | -0/+19 | |
Port all the examples and tests. | |||||
2011-01-04 | Copyright update | Boris Kolpackov | 1 | -1/+1 | |
2010-12-01 | Implement not_null pointer pragma | Boris Kolpackov | 1 | -0/+6 | |
New exception: null_pointer. | |||||
2010-11-22 | Add session, database operations on pointers and const objects | Boris Kolpackov | 1 | -0/+24 | |
Currently, session is just an object cache. The persist, update, and erase database operations are overloaded to also work on object pointers. All the database operations and the query facility now support const objects. New session-related exceptions: not_in_session, already_in_session, const_object. | |||||
2010-09-26 | Fix a typo | Boris Kolpackov | 1 | -1/+1 | |
2010-09-23 | Add swap(), empty(), and size() to result class template | Boris Kolpackov | 1 | -0/+6 | |
2010-09-13 | Make odb::exception abstract | Boris Kolpackov | 1 | -0/+12 | |
Implement what() in concrete exceptions. | |||||
2010-08-26 | Add support for creating other build systems (meta-building) | Boris Kolpackov | 1 | -7/+13 | |
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations. | |||||
2010-08-20 | Add deadlock exception | Boris Kolpackov | 1 | -6/+4 | |
2010-07-20 | Get rid of the session mechanism for now | Boris Kolpackov | 1 | -8/+0 | |
Add low-level API instead. | |||||
2010-06-04 | Initial implementation | Boris Kolpackov | 1 | -0/+52 | |