aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/forward.hxx
AgeCommit message (Collapse)AuthorFilesLines
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/+2
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/+12
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-05-05Add pgsql database implementationConstantin Michael1-0/+36