aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/forward.hxx
AgeCommit message (Collapse)AuthorFilesLines
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2015-07-15Implement SQLite incremental BLOB/TEXT I/OBoris Kolpackov1-0/+13
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-09-17Schema versioning supportBoris Kolpackov1-1/+3
2013-08-14Add support for object sectionsBoris Kolpackov1-0/+3
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-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-02-05Add support for change-tracking containersBoris Kolpackov1-0/+3
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking.
2012-11-29Namespace management for static multi-database supportBoris Kolpackov1-0/+16
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-08Ground work for multi-database supportBoris Kolpackov1-1/+1
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-1/+7
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/+2
2011-10-27Add support for persistent classes without object idsBoris Kolpackov1-0/+3
New pragma id (object). New test: common/no-id.
2011-10-21Split 'in' binding into insert/update pair; rename 'out' to selectBoris Kolpackov1-0/+7
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-09-06Support for views; native partBoris Kolpackov1-0/+3
2011-08-21Add odb::connection classBoris Kolpackov1-0/+7
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-04-25Pass id binding instead of id image in container traitsBoris Kolpackov1-0/+1
This will allow us to reuse things more.
2011-03-25Use forward-declared query class in result interfaceBoris Kolpackov1-2/+13
2011-03-18Development build system setupBoris Kolpackov1-0/+37