aboutsummaryrefslogtreecommitdiff
path: root/odb/forward.hxx
AgeCommit message (Collapse)AuthorFilesLines
2019-01-16Update copyright yearKaren Arutyunov1-1/+1
2018-05-24Update copyright yearKaren Arutyunov1-1/+1
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2016-08-16Forward-declare query resultBoris Kolpackov1-0/+2
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov1-0/+4
2014-09-19Add stderr_full_tracer that additionally traces statement preparationBoris Kolpackov1-0/+1
2013-08-28Support for added and deleted data member pragmasBoris Kolpackov1-9/+2
2013-08-27Add support for getting version and migration flag in one structureBoris Kolpackov1-0/+10
2013-08-14Add support for object sectionsBoris Kolpackov1-0/+2
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-04-09Add support for embedded schema migrationBoris Kolpackov1-0/+2
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-16Add support for using custom session implementationsBoris Kolpackov1-2/+2
New option, --session-type.
2012-11-29Namespace management for static multi-database supportBoris Kolpackov1-2/+19
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 Kolpackov1-2/+9
2012-10-31Add dynamic multi-database support excluding queryBoris Kolpackov1-2/+3
2012-10-19Implement early connection releaseBoris Kolpackov1-0/+5
2012-10-08Ground work for multi-database supportBoris Kolpackov1-1/+34
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-04-23Polymorphic inheritance supportBoris Kolpackov1-0/+14
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-11-07Add support for SQL statement tracingBoris Kolpackov1-0/+13
2011-09-05Support for views; native partBoris Kolpackov1-4/+9
2011-08-21Add odb::connection classBoris Kolpackov1-0/+13
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-28Forward-declare result class templateBoris Kolpackov1-0/+4
2011-03-25Add support for forward-declaring shared_base-based typesBoris Kolpackov1-6/+2
The forward declaration must specialize the counter_type template to explicitly specify shared_base as the counter type.
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-0/+8
Port all the examples and tests.
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-12-09Add lazy pointer supportBoris Kolpackov1-0/+3
Built-in support is provided for raw, auto, and tr1 shared/weak pointers. New test: common/lazy-ptr.
2010-11-22Forward-declare details::shared_ptrBoris Kolpackov1-0/+9
2010-11-15Add support for custom object pointersBoris Kolpackov1-5/+2
New option: --default-pointer. New object pragma specifier: pointer.
2010-11-06Add container traits interface and implementationBoris Kolpackov1-0/+3
Implementation is provided for the standard C++ containers.
2010-10-27Implement support for composite value typesBoris Kolpackov1-3/+3
New test: common/composite.
2010-08-26Add support for creating other build systems (meta-building)Boris Kolpackov1-0/+4
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations.
2010-08-18Move shared_ptr to the details namespaceBoris Kolpackov1-3/+0
2010-08-13Let the DB implementation define a specialization of queryBoris Kolpackov1-3/+0
2010-08-10Add query supportBoris Kolpackov1-0/+3
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-2/+1
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+38